/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0-rc7 * 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 { Agent } from './Agent'; import type { Pagination } from './Pagination'; /** * * @export * @interface PaginatedAgentList */ export interface PaginatedAgentList { /** * * @type {Pagination} * @memberof PaginatedAgentList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedAgentList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedAgentList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedAgentList interface. */ export declare function instanceOfPaginatedAgentList(value: object): value is PaginatedAgentList; export declare function PaginatedAgentListFromJSON(json: any): PaginatedAgentList; export declare function PaginatedAgentListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedAgentList; export declare function PaginatedAgentListToJSON(json: any): PaginatedAgentList; export declare function PaginatedAgentListToJSONTyped(value?: PaginatedAgentList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedAgentList.d.ts.map