import React from "react"; type Props = { readonly className: string; readonly text: string; readonly onClick?: (event: React.MouseEvent) => void; [key: string]: any; }; export declare const Button: ({ className, text, onClick, ...props }: Props) => React.JSX.Element; export {};