import * as yup from 'yup';
declare const pluginConfigSchema: yup.ObjectSchema<{
    contentTypes: {
        uid?: string;
        transliterate?: boolean;
        fuzzysortOptions?: {
            keys?: {
                name?: string;
                weight?: number;
            }[];
            threshold?: number;
            limit?: number;
        };
        modelName?: string;
    }[];
}, yup.AnyObject, {
    contentTypes: "";
}, "">;
export default pluginConfigSchema;
