import { default as React } from 'react'; import { STATE } from '../../constants'; import { GenesisTheme } from '../../styles/theme/genesis-theme.types'; type ThemeType = "primary" | "secondary" | "tertiary" | "destructive" | "utility" | "icon" | "password"; type Variant = "none" | "simple"; interface SelectTriggerProperties { type?: ThemeType; theme?: GenesisTheme; state?: keyof typeof STATE; value?: string[] | string | number[] | number; placeholder?: string; open?: boolean; onClick?: () => void; renderValue?: (value: any) => React.ReactNode; options?: { value: string; label: React.ReactNode; }[]; disabled?: boolean; variant?: Variant; } declare const SelectTrigger: React.FC; export default SelectTrigger;