UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

14 lines (13 loc) 303 B
import React from "react"; interface PickerModalProps { open: boolean; value: string; options: { label: string; value: string; }[]; onSelect: (value: string) => void; onClose: () => void; } export declare const PickerModal: React.FC<PickerModalProps>; export {};