/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * 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. */ import type { CaptchaStage } from './CaptchaStage'; import type { Pagination } from './Pagination'; /** * * @export * @interface PaginatedCaptchaStageList */ export interface PaginatedCaptchaStageList { /** * * @type {Pagination} * @memberof PaginatedCaptchaStageList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedCaptchaStageList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedCaptchaStageList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedCaptchaStageList interface. */ export declare function instanceOfPaginatedCaptchaStageList(value: object): value is PaginatedCaptchaStageList; export declare function PaginatedCaptchaStageListFromJSON(json: any): PaginatedCaptchaStageList; export declare function PaginatedCaptchaStageListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedCaptchaStageList; export declare function PaginatedCaptchaStageListToJSON(json: any): PaginatedCaptchaStageList; export declare function PaginatedCaptchaStageListToJSONTyped(value?: PaginatedCaptchaStageList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedCaptchaStageList.d.ts.map