/** * 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 { Provider } from './Provider'; /** * * @export * @interface PaginatedProviderList */ export interface PaginatedProviderList { /** * * @type {Pagination} * @memberof PaginatedProviderList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedProviderList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedProviderList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedProviderList interface. */ export declare function instanceOfPaginatedProviderList(value: object): value is PaginatedProviderList; export declare function PaginatedProviderListFromJSON(json: any): PaginatedProviderList; export declare function PaginatedProviderListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProviderList; export declare function PaginatedProviderListToJSON(json: any): PaginatedProviderList; export declare function PaginatedProviderListToJSONTyped(value?: PaginatedProviderList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedProviderList.d.ts.map