import React from 'react';
import type { SpaceProps } from '../../../../components/Space';
import type { SubmitState } from '../../types';
export type FormSubmitIndicatorProps = {
    state: SubmitState;
    id?: string;
    label?: React.ReactNode;
    showLabel?: boolean;
    className?: string;
    children?: React.ReactNode;
} & SpaceProps;
declare function SubmitIndicator(props: FormSubmitIndicatorProps): import("react/jsx-runtime").JSX.Element;
export default SubmitIndicator;
