import * as React from "react"; declare type ExampleButtonProps = { children: any; disabled?: boolean; mode: string; onClick: () => {}; }; declare const ExampleButton: React.FunctionComponent; export { ExampleButton };