import "../styles/index.scss"; declare type ButtonProps = { size: "s" | "m" | "l"; kind: "strong" | "light"; type: "primary" | "secondary" | "destructive"; prefixIcon?: any; postfixIcon?: any; label: string; }; declare const Button: ({ size, kind, type, label, prefixIcon, postfixIcon, }: ButtonProps) => JSX.Element; export default Button;