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