import type { PluginOption } from "vite";
type TemplateEngine = Record<string, (fileName: string, source: string) => string>;
type Options = {
    templateEngine?: TemplateEngine;
};
export declare function ink(options?: Options): PluginOption;
export {};
