import { IProps } from "./interfaces"; declare const Button: { (props: IProps): JSX.Element; defaultProps: { dimension: string; type: string; color: string; }; }; export default Button;