import { ButtonHTMLAttributes, DetailedHTMLProps, FC, FunctionComponent } from 'react';
export interface ButtonProps extends DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> {
    disabled?: boolean;
    appearance: 'smail' | 'big';
    icon: FunctionComponent;
    dataTestid?: string;
}
export declare const SquaredButton: FC<ButtonProps>;
