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