import { Compiler } from 'webpack';
interface BuildFileOptions {
    compiler: Compiler;
    gitWorkTree?: string;
    command: string;
    replacePattern: RegExp;
    asset: string;
}
export default function buildFile({ compiler, gitWorkTree, command, replacePattern, asset }: BuildFileOptions): void;
export {};
