import * as React from "react";
import { ReactNode } from "react";
type PropsType = {
    children: ReactNode;
};
declare function Button({ children }: PropsType): React.JSX.Element;
export { Button };
