/// export type ButtonProps = { children: JSX.Element; disabled?: boolean; customColor?: string; loading?: boolean; fullWidth?: boolean; className?: string; component?: Element | string; }; declare function Button({ children, disabled, loading, fullWidth, className, component, ...rest }: ButtonProps): JSX.Element; export default Button;