import { AuthenticatedCommand } from "../../../AuthenticatedCommand"; export default class Get extends AuthenticatedCommand { static readonly description = "retrieve details of a Domain by reference"; static readonly examples: string[]; static readonly args: { ref: import("@oclif/core/lib/interfaces").Arg>; }; run(): Promise; }