export type ButtonType = 'a' | 'button' | 'reset' | 'submit'; export type ButtonTargetType = 'self' | 'blank'; export type ButtonSizeType = 'sm' | 'md' | 'lg' | 'xl'; export type TabSizeType = 'sm' | 'md'; export type ButtonIconPositionType = 'left' | 'right'; export type ButtonVariantType = 'ai' | 'apple' | 'dark' | 'error' | 'google' | 'info' | 'light' | 'primary' | 'secondary' | 'success' | 'warning'; export type ButtonDropdownVariantType = 'ai' | 'dark' | 'error' | 'info' | 'light' | 'primary' | 'secondary' | 'success' | 'warning';