/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Themed URLs - maps theme names to URLs for light and dark themes * @export * @interface ThemedUrls */ export interface ThemedUrls { /** * * @type {string} * @memberof ThemedUrls */ light?: string | null; /** * * @type {string} * @memberof ThemedUrls */ dark?: string | null; } /** * Check if a given object implements the ThemedUrls interface. */ export declare function instanceOfThemedUrls(value: object): value is ThemedUrls; export declare function ThemedUrlsFromJSON(json: any): ThemedUrls; export declare function ThemedUrlsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ThemedUrls; export declare function ThemedUrlsToJSON(json: any): ThemedUrls; export declare function ThemedUrlsToJSONTyped(value?: ThemedUrls | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ThemedUrls.d.ts.map