import { type Tree } from '@nx/devkit';
interface WebStaticServeSchema {
    buildTarget: string;
    outputPath?: string;
    targetName?: string;
    spa?: boolean;
}
export declare function webStaticServeGenerator(tree: Tree, options: WebStaticServeSchema): Promise<void>;
export default webStaticServeGenerator;
