import React from "react"; interface customBtnProps { id?: any; value?: string | undefined; type?: "submit" | "reset" | "button" | undefined; className?: string; onClick?: (event: any, state?: any) => void; iconClass?: string; name?: string; disabled?: boolean; title?: string; } export declare const Button: React.FC; export {};