import React, { FC } from 'react'; import { SxProps } from '@mui/material'; import { type Color, type Size, type Variant } from '../../types/button'; interface ButtonProps { onClick?: (event?: any) => void; sx?: SxProps; color?: Color; disableElevation?: boolean; disabled?: boolean; size?: Size; variant?: Variant; component?: React.ForwardRefExoticComponent; to?: string; className?: string; children?: React.ReactNode; } export declare const Button: FC; export {};