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