import { Prediction, StringDict } from "../../../parsing/common";
import { DateField, StringField } from "../../../parsing/standard";
/**
 * Health Card API version 1.0 document data.
 */
export declare class HealthCardV1Document implements Prediction {
    /** The given names of the card holder. */
    givenNames: StringField[];
    /** The date when the carte vitale document was issued. */
    issuanceDate: DateField;
    /** The social security number of the card holder. */
    socialSecurity: StringField;
    /** The surname of the card holder. */
    surname: StringField;
    constructor(rawPrediction: StringDict, pageId?: number);
    /**
     * Default string representation.
     */
    toString(): string;
}
