export declare const TEST_ID = "form-auto-save-indicator"; export interface Props { /** Indicates that form values are being saved */ saving?: boolean; /** Timeout duration for the delay before hiding 'Saved' text */ hideTimeout?: number; /** The text of the label, default is 'Saved' */ label?: string; } declare const FormAutoSaveIndicator: ({ saving, label, hideTimeout, }: Props) => JSX.Element; export default FormAutoSaveIndicator; //# sourceMappingURL=FormAutoSaveIndicator.d.ts.map