export declare type PickUpDetail = {
    id: string | null;
    contactName: string;
    address: string;
    contactPhoneNumber: string;
    plate: string;
    sequenceNumber: number;
    unit: string;
    comment: string;
    latitude: number;
    longitude: number;
    type: string;
    collectCash: string;
    paymentType: string;
    cashOnPickup: number;
    cashOnDelivery: number;
    isHub: string | null;
    vendorId: string | null;
};
