import type { Command } from "@oclif/core"; import type { CreateSessionResult, ResourceAccessLevelInput, Session } from "../graphql/graphql.js"; export declare const createSession: (command: Command, resourceId: string, accessLevel: ResourceAccessLevelInput, sessionId: string | undefined, metadataFragment: string, skipBrowserPrompt?: boolean) => Promise; export declare const getSessionExpirationMessage: (session: Session) => string;