import { BaseResponse } from './base-response';
import { PickupConfirmation, PickupWindow, BillingLineItem } from '../models';
/** @description Basic structure for a response to schedule a pickup */
export declare class SchedulePickupResponse extends BaseResponse {
    confirmation?: PickupConfirmation;
    pickup_windows?: PickupWindow[];
    remarks?: string;
    custom_properties?: {
        [key: string]: string;
    };
    billing_line_items?: BillingLineItem[];
}
