/** * 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 { Pagination } from './Pagination'; import type { PromptStage } from './PromptStage'; /** * * @export * @interface PaginatedPromptStageList */ export interface PaginatedPromptStageList { /** * * @type {Pagination} * @memberof PaginatedPromptStageList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedPromptStageList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedPromptStageList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedPromptStageList interface. */ export declare function instanceOfPaginatedPromptStageList(value: object): value is PaginatedPromptStageList; export declare function PaginatedPromptStageListFromJSON(json: any): PaginatedPromptStageList; export declare function PaginatedPromptStageListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedPromptStageList; export declare function PaginatedPromptStageListToJSON(json: any): PaginatedPromptStageList; export declare function PaginatedPromptStageListToJSONTyped(value?: PaginatedPromptStageList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedPromptStageList.d.ts.map