import type { AppCommandOrientation } from '../../types/index.js';
import { PushAppCommand } from '../../push-app-command.js';
export default class AppPush extends PushAppCommand {
    static args: {
        file: import("@oclif/core/lib/interfaces/parser.js").Arg<string | undefined, Record<string, unknown>>;
    };
    static delayOrientation: boolean;
    static description: string;
    static examples: string[];
    static flags: any;
    static orientation: AppCommandOrientation;
    static summary: string;
    resolvePushPaths(file: string, appPathFlag?: string): {
        filePath: string;
        relativePath: string;
    };
    run(): Promise<void>;
}
