import { StringDict } from "../../parsing/common";
import { Polygon } from "../../geometry";
/**
 * The list of languages that the candidate is proficient in.
 */
export declare class ResumeV1Language {
    #private;
    /** The language's ISO 639 code. */
    language: string | null;
    /** The candidate's level for the language. */
    level: 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;
}
