import { optionsKeyVuefy, overrideKeyVuefy } from "../../imperative/wrappers";
import type { CustomVuefyFn, CustomVuefyOptions, Vuefy } from "./types";
import type TVue from "@vue/runtime-core";
export type GenericVuefy = {
    readonly overrideKey: typeof overrideKeyVuefy;
    readonly optionsKey: typeof optionsKeyVuefy;
    bindTo(Vue: typeof TVue): Vuefy;
};
export declare const vuefy: Readonly<GenericVuefy>;
export type { CustomVuefyFn, CustomVuefyOptions, Vuefy };
