/**
 * fastcomments
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 0.0.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 { APITenant } from './APITenant';
import type { APIStatus } from './APIStatus';
/**
 *
 * @export
 * @interface GetTenantsResponse
 */
export interface GetTenantsResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof GetTenantsResponse
     */
    status: APIStatus;
    /**
     *
     * @type {Array<APITenant>}
     * @memberof GetTenantsResponse
     */
    tenants: Array<APITenant>;
}
/**
 * Check if a given object implements the GetTenantsResponse interface.
 */
export declare function instanceOfGetTenantsResponse(value: object): value is GetTenantsResponse;
export declare function GetTenantsResponseFromJSON(json: any): GetTenantsResponse;
export declare function GetTenantsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenantsResponse;
export declare function GetTenantsResponseToJSON(json: any): GetTenantsResponse;
export declare function GetTenantsResponseToJSONTyped(value?: GetTenantsResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetTenantsResponse.d.ts.map