import React from 'react'; export interface ISelectProps { textFont?: string; textSize?: string; textColor?: string; textWeight?: string; listItemTextFont?: string; listItemTextSize?: string; listItemTextColor?: string; listItemTextWeight?: string; bgColor?: string; iconOnRight?: boolean; disabled?: boolean; hoverBgColor?: string; hoverBorderColor?: string; } declare type DataOptions = { label: string; value?: string; }; declare type SelectValue = { label: string; value: string; }; export interface ISelectMainContainer extends ISelectProps, React.HTMLAttributes { dataOptions: DataOptions[]; defaultLabel?: string; selectedValue?: SelectValue; setSelectedValue: (prev: any) => void; } export interface ISelectListItemProps extends React.HTMLAttributes { listItemTextFont?: string; listItemTextSize?: string; listItemTextColor?: string; listItemTextWeight?: string; hoverBgColor?: string; hoverBorderColor?: string; } export {};