import React from 'react'; interface ButtonProps { onClick: () => void; children: string; } export declare const Button: React.FC; export {};