import { Context } from "../../bundler/context.js";
import { ProjectConfig } from "./config.js";
export type PushOptions = {
    adminKey: string;
    verbose: boolean;
    dryRun: boolean;
    typecheck: "enable" | "try" | "disable";
    debug: boolean;
    debugBundlePath?: string;
    codegen: boolean;
    url: string;
    writePushRequest?: string;
    liveComponentSources: boolean;
};
export declare function runNonComponentsPush(ctx: Context, options: PushOptions, configPath: string, projectConfig: ProjectConfig): Promise<void>;
//# sourceMappingURL=push.d.ts.map