export type Arguments = ({
    command: "build";
    skipNextBuild: boolean;
    minify: boolean;
} | {
    command: "preview" | "deploy";
    passthroughArgs: string[];
    assetsDir: string;
    cacheDir: string;
    bundlerVersion: string;
} | {
    command: "populateCache";
    assetsDir: string;
    cacheDir: string;
} | {
    command: "populateAssets";
    assetsDir: string;
}) & {
    outputDir?: string;
};
export declare function getArgs(): Arguments;
export declare function getPassthroughArgs(): string[];
