/** * 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 { ThemedUrls } from './ThemedUrls'; /** * Base serializer class which doesn't implement create/update methods * @export * @interface FileList */ export interface FileList { /** * * @type {string} * @memberof FileList */ name: string; /** * * @type {string} * @memberof FileList */ mimeType: string; /** * * @type {string} * @memberof FileList */ url: string; /** * * @type {ThemedUrls} * @memberof FileList */ themedUrls?: ThemedUrls | null; } /** * Check if a given object implements the FileList interface. */ export declare function instanceOfFileList(value: object): value is FileList; export declare function FileListFromJSON(json: any): FileList; export declare function FileListFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileList; export declare function FileListToJSON(json: any): FileList; export declare function FileListToJSONTyped(value?: FileList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FileList.d.ts.map