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