import { StringDict } from "../../parsing/common";
import { Polygon } from "../../geometry";
/**
 * The list of social network profiles of the candidate.
 */
export declare class ResumeV1SocialNetworksUrl {
    #private;
    /** The name of the social network. */
    name: string | null;
    /** The URL of the social network. */
    url: 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 an rST table.
     */
    toTableLine(): string;
}
