import { Management } from '@prisma-multi-tenant/shared'; import { Command, CommandArguments } from '../types'; declare class Studio implements Command { name: string; args: { name: string; optional: boolean; description: string; }[]; options: ({ name: string; altNames: string[]; description: string; } | { name: string; description: string; altNames?: undefined; })[]; description: string; execute(args: CommandArguments, management: Management): Promise; } declare const _default: Studio; export default _default;