import React from 'react'; type IOption = Record; export type SelectProps = { name?: string; value?: any; labelKey?: string; valueKey?: string; options?: IOption[]; isSearchable?: boolean; isMulti?: boolean; placeholder?: string; variant?: 'success' | 'info' | 'danger' | 'warning' | 'primary' | 'secondary' | undefined; icon?: React.ReactNode; locale?: string; isLoading?: boolean; isDisabled?: boolean; menuIsOpen?: boolean; onChange?(newValue: unknown, meta?: any): void; }; export declare const Select: ({ options, isSearchable, isMulti, placeholder, variant, labelKey, valueKey, locale, menuIsOpen, icon, ...props }: SelectProps) => React.JSX.Element; export {};