import type { ConditionType } from './ConditionType';
/**
 *
 * @export
 * @interface ConditionTypeListResponse
 */
export interface ConditionTypeListResponse {
    /**
     * An array containing the actual response objects.
     * @type {Array<ConditionType>}
     * @memberof ConditionTypeListResponse
     */
    readonly data?: Array<ConditionType>;
    /**
     * Whether there are more objects available after this set. If false, there are no more objects to retrieve.
     * @type {boolean}
     * @memberof ConditionTypeListResponse
     */
    readonly hasMore?: boolean;
    /**
     * The applied limit on the number of objects returned.
     * @type {number}
     * @memberof ConditionTypeListResponse
     */
    readonly limit?: number;
}
/**
 * Check if a given object implements the ConditionTypeListResponse interface.
 */
export declare function instanceOfConditionTypeListResponse(value: object): value is ConditionTypeListResponse;
export declare function ConditionTypeListResponseFromJSON(json: any): ConditionTypeListResponse;
export declare function ConditionTypeListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConditionTypeListResponse;
export declare function ConditionTypeListResponseToJSON(json: any): ConditionTypeListResponse;
export declare function ConditionTypeListResponseToJSONTyped(value?: Omit<ConditionTypeListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;
