import type { Interfaces } from '@oclif/core';
export declare let unsupportedFlag: boolean;
export interface AppOptions {
    noFlush?: boolean;
    development?: boolean;
    dir: string;
    loadOptions?: Interfaces.LoadOptions;
}
export declare function preparseArgs(argv: string[]): Promise<string[]>;
export declare function checkDeletedCommand(argvSlice: string[]): void;
export declare function isSubcommand(args: string[]): Promise<boolean>;
