export interface StandardInput {
    isTTY(): boolean;
    readStreamAsync(): Promise<string>;
}
export declare const standardInput: StandardInput;
