import { FromSchema } from 'json-schema-to-ts';
export declare const legalValueSchema: {
    readonly $id: "#/components/schemas/legalValueSchema";
    readonly type: "object";
    readonly additionalProperties: false;
    readonly required: readonly ["value"];
    readonly properties: {
        readonly value: {
            readonly type: "string";
        };
        readonly description: {
            readonly type: "string";
        };
    };
    readonly components: {};
};
export declare type LegalValueSchema = FromSchema<typeof legalValueSchema>;
