export declare const amountSchema: {
    bignumber: {
        minimum: number;
        maximum: number;
    };
};
export declare const vendorFieldSchema: {
    anyOf: ({
        type: string;
        format?: undefined;
    } | {
        type: string;
        format: string;
    })[];
};
export declare const notarizationSchema: {
    type: string;
    required: string[];
    properties: {
        hash: {
            type: string;
            minLength: number;
        };
    };
};
