import { SelectHTMLAttributes } from 'react';
export type TDropDownSelectItem = {
value: string;
key: string;
};
export type TDropDownSelect = {
align?: 'left' | 'center';
values?: TDropDownSelectItem[] | string[];
value?: string;
disabled?: boolean;
placeholder?: string;
emptySelect?: boolean;
children?: React.ReactNode;
};
export type TDropDownSelectNativeAttrs = Omit, 'type'>;
export type TDropDownSelectWithNativeAttrs = TDropDownSelect & TDropDownSelectNativeAttrs;