import { type BunPlugin } from "bun";
import { type GetComptimeReplacementsOpts } from "./comptime.ts";
export type ComptimeBunPluginOpts = GetComptimeReplacementsOpts & {
    filter?: RegExp;
};
export declare const comptime: (opts?: ComptimeBunPluginOpts) => BunPlugin;
