import type { ThemeUIConfig } from '@redocly/theme'; export declare enum AuthProviderType { OIDC = "OIDC", SAML2 = "SAML2", BASIC = "BASIC" } export interface GlobalData { theme?: ThemeUIConfig; authIdps?: Array<{ idpId: string; type: AuthProviderType; }>; rbac?: {}; apiProducts?: { [apiProductId: string]: { slug: string; }; }; i18n?: { translations: Record; defaultLocale: string; locales: { code: string; name: string; }[]; }; [key: string]: unknown; } //# sourceMappingURL=global-data.d.ts.map