import { ReactNode } from 'react';
export interface SelectOptionItem {
    key: any;
    label: string;
}
interface SelectModalProps {
    options: SelectOptionItem[];
    value: any;
    multiple?: boolean;
    onChange: (value: any) => void;
    children: ReactNode;
}
export declare const SelectModal: ({ options, value, multiple, onChange, children, }: SelectModalProps) => import("react/jsx-runtime").JSX.Element;
export default SelectModal;
