import { FC } from "react";
export interface FormSubmitProps {
    children?: any;
    disabled?: boolean;
    loadingText?: Record<string, string>;
}
declare const Submit: FC<FormSubmitProps>;
export default Submit;
