import { IconsNames } from '../../../ui/index.js';
export interface ButtonProps extends React.ButtonHTMLAttributes<any> {
    text?: string;
    href?: string;
    svg?: IconsNames;
    loading?: boolean;
    type?: 'submit' | 'button';
    target?: '_blank' | '_self' | '_parent' | '_top';
    enabledTranslate?: boolean;
}
