type Args = {
    /** Path to project directory */
    root: string;
    /** Determines, if AST should be saved */
    withAst?: boolean;
};
export declare function build({ root, withAst }: Args): Promise<void>;
export {};
