import { ConvertFn, NamingConvention } from './types.js';
export declare function convertFactory(config: {
    namingConvention?: NamingConvention;
}): ConvertFn;
export declare const convertName: ({ convert, options, }: {
    options: {
        typesPrefix: string;
        useTypesPrefix?: boolean;
        typesSuffix: string;
        useTypesSuffix?: boolean;
    };
    convert: () => string;
}) => string;
