import React from 'react';
type ButtonProps = {
    label: string;
    onClick?: () => void;
};
declare const Button: React.FC<ButtonProps>;
export default Button;
