/// <reference types="react" />
import { CustomSize, CustomVariant, Size } from '../components';
type ButtonVariant = 'primary' | 'secondary' | 'tertiary' | 'outline' | 'link';
export type ButtonT = {
    lIcon?: JSX.Element;
    rIcon?: JSX.Element;
    isDestructive?: boolean;
} & CustomVariant<ButtonVariant> & CustomSize<Size> & React.ComponentProps<'button'>;
export {};
