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