import { AccountCenterFieldControl, WebauthnRelatedOrigins, GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link AccountCenter} for the original type. */ export type CreateAccountCenter = { tenantId?: string; id: string; /** The whole feature can be disabled */ enabled?: boolean; /** Control each fields */ fields?: AccountCenterFieldControl; webauthnRelatedOrigins?: WebauthnRelatedOrigins; }; export type AccountCenter = { tenantId: string; id: string; /** The whole feature can be disabled */ enabled: boolean; /** Control each fields */ fields: AccountCenterFieldControl; webauthnRelatedOrigins: WebauthnRelatedOrigins; }; export type AccountCenterKeys = 'tenantId' | 'id' | 'enabled' | 'fields' | 'webauthnRelatedOrigins'; export declare const AccountCenters: GeneratedSchema;