import type Pug from 'pug';
import type { Plugin } from 'vite';
/**
 * Pugビルド設定
 */
interface BuildSettings {
    /** Pugコンパイルオプション */
    readonly options?: Pug.Options;
    /** Pugローカル変数オブジェクト */
    readonly locals?: Pug.LocalsObject;
}
/**
 * Vite用Pugビルドプラグイン
 * @param settings - ビルド設定
 * @returns Viteプラグイン
 */
export declare const vitePluginPugBuild: (settings: BuildSettings) => Plugin;
export {};
//# sourceMappingURL=build.d.ts.map