interface BuildOpts {
    file: string;
    outDir: string;
}
export declare function build({ file, outDir }: BuildOpts): Promise<void>;
export {};
