import { StringDict } from "../../parsing/common";
import { Polygon } from "../../geometry";
/**
 * The party to be notified of the arrival of the goods.
 */
export declare class BillOfLadingV1NotifyParty {
    #private;
    /** The address of the notify party. */
    address: string | null;
    /** The  email of the shipper. */
    email: string | null;
    /** The name of the notify party. */
    name: string | null;
    /** The phone number of the notify party. */
    phone: string | null;
    /** Confidence score */
    confidence: number;
    /** The document page on which the information was found. */
    pageId: number;
    /**
     * Contains the relative vertices coordinates (points) of a polygon containing
     * the field in the document.
     */
    polygon: Polygon;
    constructor({ prediction }: StringDict);
    /**
     * Default string representation.
     */
    toString(): string;
    /**
     * Output in a format suitable for inclusion in a field list.
     */
    toFieldList(): string;
}
