import React, { FunctionComponent } from "react"; declare type Props = { children: React.ReactNode; onClick: () => any; }; export declare const Button: FunctionComponent; export {};