/** * Typesense API * An open source search engine for building delightful search experiences. * * The version of the OpenAPI document: 30.0 * * * 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 { ApiKey } from './ApiKey.js'; /** * * @export * @interface ApiKeysResponse */ export interface ApiKeysResponse { /** * * @type {Array} * @memberof ApiKeysResponse */ keys: Array; } /** * Check if a given object implements the ApiKeysResponse interface. */ export declare function instanceOfApiKeysResponse(value: object): value is ApiKeysResponse; export declare function ApiKeysResponseFromJSON(json: any): ApiKeysResponse; export declare function ApiKeysResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiKeysResponse; export declare function ApiKeysResponseToJSON(json: any): ApiKeysResponse; export declare function ApiKeysResponseToJSONTyped(value?: ApiKeysResponse | null, ignoreDiscriminator?: boolean): any;