export declare const forgotPasswordFormMeta: { readonly name: "ForgotPasswordForm"; readonly category: "pattern"; readonly description: "Collects an account identifier to start password recovery."; readonly directManifestNode: true; readonly allowedChildren: readonly []; readonly blueprint: { readonly label: "Forgot password form"; readonly defaultProps: { readonly identifiers: readonly ["email"]; readonly identifierLabel: "Email"; readonly signInLabel: "Sign in"; readonly submitLabel: "Send code"; readonly loading: false; readonly disabled: false; }; }; readonly events: { readonly submit: { readonly label: "Submit"; readonly eventType: "forgotPasswordForm.submit"; readonly payloadFields: readonly [{ readonly path: "identifier"; readonly type: "string"; readonly label: "Identifier"; }, { readonly path: "identifierKind"; readonly type: "string"; readonly label: "Identifier kind"; }]; }; readonly signIn: { readonly label: "Sign in"; readonly eventType: "forgotPasswordForm.signIn"; readonly payloadFields: readonly []; }; }; readonly props: { readonly identifiers: { readonly type: "array"; readonly category: "Authentication"; readonly label: "Identifiers"; readonly default: readonly ["email"]; }; readonly identifierLabel: { readonly type: "string"; readonly category: "Content"; readonly label: "Identifier label"; }; readonly signInLabel: { readonly type: "string"; readonly category: "Content"; readonly label: "Sign-in label"; }; readonly submitLabel: { readonly type: "string"; readonly category: "Content"; readonly label: "Submit label"; }; readonly error: { readonly type: "string"; readonly category: "State"; readonly label: "Error"; }; readonly loading: { readonly type: "boolean"; readonly category: "State"; readonly label: "Loading"; readonly default: false; }; readonly disabled: { readonly type: "boolean"; readonly category: "State"; readonly label: "Disabled"; readonly default: false; }; }; }; //# sourceMappingURL=forgotPasswordFormMeta.d.ts.map