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