import { ComponentType } from 'react'; import { ButtonProps, ButtonSharedProps } from '../types'; import { IconProps } from '../../icon'; export declare type Variant = 'default' | 'bulk'; export declare type IconTextButtonProps = Omit & { icon?: ComponentType>; variant?: Variant; bordered?: boolean; }; export declare type SharedProps = ButtonSharedProps & { $iconTextVariant?: Variant; $bordered?: boolean; };