export declare const build: (inputFileName: string, options: any) => Promise<void>;
export declare const startViteBuild: (pageName: string) => Promise<{
    success: boolean;
    message?: undefined;
} | {
    success: boolean;
    message: any;
}>;
