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