import { type FC } from '@lynx-js/react';
import type { ViewProps } from '@lynx-js/types';
type SubmitButtonProps = {
    disableOnSubmit?: boolean;
    disabledClassName?: string;
} & Partial<ViewProps>;
export declare const SubmitButton: FC<SubmitButtonProps>;
export {};
