type SingleSelectProps = { multiple?: false; selectState?: string; onChange: (selectState: string) => void; zIndex?: number; }; type MultipleSelectProps = { multiple: true; selectState: string[]; onChange: (value: string[]) => void; zIndex?: number; }; type SelectProps = { options: string[]; } & (SingleSelectProps | MultipleSelectProps); export declare const Select: ({ multiple, selectState, options, zIndex, onChange, }: SelectProps) => import("react/jsx-runtime").JSX.Element; export default Select;