export declare type UsersProfiles = { id: number; name?: string | null; namePlural?: string | null; slug: string; color?: string | null; homePageDefault?: string | null; canSelfCreateAccount?: boolean | null; formId?: number | null; requirePasswordStrength: number; webhookUrl?: string | null; webhookType?: UsersProfiles.webhookType | null; createdAt: string; updatedAt: string; deletedAt?: string | null; }; export declare namespace UsersProfiles { enum webhookType { POST = "POST", PUT = "PUT" } }