import type { PluginDtsBuildOptions } from './types.cjs'
export declare function dts(options?: PluginDtsBuildOptions): {
    name: string;
    enforce: "pre";
    apply: "build";
    buildStart(): Promise<void>;
    writeBundle(): Promise<void>;
    watchChange(_id: string, change: {
        event: "create" | "update" | "delete";
    }): void;
};
