export default function promptInTerminal(message: string, options?: {
    defaultValue?: string | undefined;
    type?: "text" | "password";
    mask?: string | undefined;
    gui?: boolean;
}): Promise<string | null>;
