/**
 * PostNL Ecommerce APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { ReasonNoTimeframes } from './reasonNoTimeframes';
import { Timeframes } from './timeframes';
export interface TimeframeResponse {
    timeframes?: Timeframes;
    reasonNoTimeframes?: ReasonNoTimeframes;
}
export declare const timeframeResponseSchema: Schema<TimeframeResponse>;
