export declare const legalName: {
    title: string;
    type: string;
    properties: {
        fullName: {
            type: string;
        };
        firstName: {
            type: string;
        };
        middleName: {
            type: string;
        };
        lastName: {
            type: string;
        };
        proofs: {
            type: string;
        };
    };
    required: string[];
    additionalProperties: boolean;
};
//# sourceMappingURL=legalName.d.ts.map