export interface CommandLineInterface {
    args: string[];
    read(input: string): AsyncIterableIterator<Uint8Array>;
}
export declare function execute(cli: CommandLineInterface): Promise<void>;
