import { PreCheckoutQuery } from '../types'; import { User, OrderInfo } from '../types'; export declare class PreCheckoutQueryBase implements PreCheckoutQuery { id: string; from: User; currency: string; total_amount: number; invoice_payload: string; shipping_option_id: string; order_info: OrderInfo; }