import { MouseEventHandler } from "react"; import "./SconeButton.scss"; declare const SconeButton: ({ className, children, startIcon, endIcon, type, size, onClick, submit }: SconeButtonProps) => JSX.Element; interface SconeButtonProps { className?: string; children: any; startIcon?: React.ReactNode; endIcon?: React.ReactNode; type: 'primary' | 'secondary' | 'ghost' | 'text'; size: 'large' | 'medium' | 'small' | 'small-pill'; submit?: boolean; onClick?: MouseEventHandler; } export default SconeButton;