import { CustomProfileFieldType, CustomProfileFieldConfig, GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link CustomProfileField} for the original type. */ export type CreateCustomProfileField = { tenantId?: string; id: string; name: string; type: CustomProfileFieldType; label?: string; description?: string | null; required?: boolean; config?: CustomProfileFieldConfig; createdAt?: number; sieOrder?: number; }; export type CustomProfileField = { tenantId: string; id: string; name: string; type: CustomProfileFieldType; label: string; description: string | null; required: boolean; config: CustomProfileFieldConfig; createdAt: number; sieOrder: number; }; export type CustomProfileFieldKeys = 'tenantId' | 'id' | 'name' | 'type' | 'label' | 'description' | 'required' | 'config' | 'createdAt' | 'sieOrder'; export declare const CustomProfileFields: GeneratedSchema;