import type { FilterPattern, Plugin } from "vite";
import { type GetComptimeReplacementsOpts } from "./comptime.ts";
export type ComptimeVitePluginOpts = GetComptimeReplacementsOpts & {
    include?: FilterPattern;
    exclude?: FilterPattern;
};
export declare function comptime(opts?: ComptimeVitePluginOpts): Promise<Plugin>;
