import { Command, HelpError } from '@prisma/cli'; import { ProviderAliases } from '@prisma/sdk'; export declare class StudioCommand implements Command { private readonly providerAliases; static new(providerAliases: ProviderAliases): StudioCommand; private static help; private constructor(); /** * Parses arguments passed to this command * * @param argv Array of all arguments */ parse(argv: string[]): Promise; help(error?: string): string | HelpError; }