export declare type SelectOption = { label: string | Array; value: string | Record; }; export declare type SelectOptions = SelectOption[]; export declare type FormikField = { name: string; value: string | string[]; }; export declare type Field = { label: string; value: string; }; export declare type FormikOptions = Array; export interface EventEmitter { (id: FormikField['value'], actionMeta?: any): void; } export interface SelectProps { options: FormikOptions; eventEmitter: EventEmitter; field?: FormikField; isMulti?: boolean; disabled?: boolean; placeholder?: string; width?: string; height?: string; minWidthMenu?: string; } export declare type MyOptionType = { width?: string; height?: string; minWidthMenu?: string; }; export declare type StylesConfig = { container: Record; control: Record; menu: Record; option: Record; };