/** * Profile allowlist helpers for HTTP profile routing. */ export interface ProfileAllowlistConfig { allowNames: string[]; allowNameRegex?: RegExp; } export interface ProfileIdentity { profileId: string; profileName: string; profileAliases?: string[]; } export declare function parseProfileAllowlistConfig(options: { allowNames?: string; allowNameRegex?: string; }): ProfileAllowlistConfig | null; export declare function isProfileAllowed(profile: ProfileIdentity, config: ProfileAllowlistConfig | null): boolean; //# sourceMappingURL=profile-allowlist.d.ts.map