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