/// export type ButtonProps = { className?: string; style?: React.CSSProperties; onClick?: React.MouseEventHandler; children?: React.ReactNode; color?: 'inherit' | 'primary' | 'secondary' | 'success' | 'error' | 'info' | 'warning'; disabled?: boolean; size?: 'small' | 'medium' | 'large'; variant?: 'contained' | 'outlined' | 'text'; href?: string; }; //# sourceMappingURL=ButtonProps.d.ts.map