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