import { LoginUser } from '@tomei/sso'; import { IUpdateOrderShippingAddress } from '../../interfaces/index'; import { ObjectBase } from '@tomei/general'; export declare class OrderShippingAddress extends ObjectBase { ObjectId: string; ObjectName: string; ObjectType: string; TableName: string; Name: Date; Address: string; City: string; State: string; Postcode: string; Country: Date; Phone: string; get OrderNo(): string; set OrderNo(value: string); private static _OrderShippingAddressRepo; private constructor(); static init(OrderNo?: string, dbTransaction?: any): Promise; create(loginUser: any, dbTransaction: any): Promise; update(loginUser: LoginUser, updatePayload: IUpdateOrderShippingAddress, dbTransaction: any): Promise; delete(loginUser: LoginUser, dbTransaction: any): Promise; }