import { StringDict } from "../../parsing/common";
import { Polygon } from "../../geometry";
/**
 * The list of certificates obtained by the candidate.
 */
export declare class ResumeV1Certificate {
    #private;
    /** The grade obtained for the certificate. */
    grade: string | null;
    /** The name of certification. */
    name: string | null;
    /** The organization or institution that issued the certificate. */
    provider: string | null;
    /** The year when a certificate was issued or received. */
    year: 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;
}
