import type { Command } from "@oclif/core"; import type { ResourceAccessLevelInput } from "../graphql/graphql.js"; export type ResourceInfo = { id: string; name: string; }; export type AccessLevelInfo = { id: string; name: string; }; export declare const DEFAULT_ACCESS_LEVEL: ResourceAccessLevelInput; export declare const filterChoices: (input: string, choices: ResourceInfo[] | AccessLevelInfo[]) => ResourceInfo[]; export declare const promptUserForResource: (command: Command, resourceType: string, message: string) => Promise; export declare const promptUserForAccessLevels: (command: Command, resourceId: string, instanceType: string, accessLevelRemoteId?: string) => Promise;