export declare class PayInCreateOrderResponseData {
    orderNo: string | null;
    orderAmount: number;
    orderStatus: string;
    checkoutUrl: string;
    goodsName: string;
    sdkSessionId: string;
    merchantNo: number;
    payToken: string;
    sdkSignKey: number;
    mockCheckoutUrl: string;
    payerVirtualAccNo: string;
    payerAccountId: string;
    payerAccountType: string;
    payMethod: string;
    appId: string;
    payCodeExpireMilliSec: string;
    payCode: string;
    constructor(orderNo: string, orderAmount: number, orderStatus: string, checkoutUrl: string, goodsName: string, sdkSessionId: string, merchantNo: number, payToken: string, sdkSignKey: number, mockCheckoutUrl: string, payerVirtualAccNo: string, payerAccountId: string, payerAccountType: string, payMethod: string, appId: string, payCodeExpireMilliSec: string, payCode: string);
}
