import { ReactNode } from "react"; interface ButtonProps { onClick?: () => void; ref?: any; cName?: string; st?: object; children?: ReactNode; } export declare const Button: (props: ButtonProps) => JSX.Element; export {};