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 groupNameSchema: {
    type: string;
    minLength: number;
    maxLength: number;
};
export declare const permissionsSchema: {
    type: string;
    uniqueItems: boolean;
    items: {
        type: string;
        required: string[];
        properties: {
            transactionType: {
                type: string;
                minimum: number;
            };
            transactionTypeGroup: {
                type: string;
                minimum: number;
            };
        };
    };
};
