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