import React from 'react'; export interface ButtonProps extends React.ButtonHTMLAttributes { text: string; href?: string; color: string; target?: boolean; loading?: boolean; checked?: boolean; sizeClass?: string; bgColor: string; type?: 'submit' | 'button'; } export declare function ButtonComponent({ text, href, type, color, target, bgColor, checked, loading, sizeClass, ...props }: ButtonProps): React.JSX.Element;