import { ListPresetsInput, ListProfilesInput, ManageContextInput, ResetContextInput, SetScopeInput, ShowContextInput, SwitchPresetInput, SwitchProfileInput, WhoamiInput } from './schema'; import { PresetInfo, ProfileInfo, ResetResult, SessionContext, SetScopeResult, SwitchResult, WhoamiResult } from './types'; export declare function handleShowContext(_input: ShowContextInput): Promise; export declare function handleListPresets(_input: ListPresetsInput): Promise; export declare function handleListProfiles(_input: ListProfilesInput): Promise; export declare function handleSwitchPreset(input: SwitchPresetInput): Promise; export declare function handleSwitchProfile(input: SwitchProfileInput): Promise; export declare function handleSetScope(input: SetScopeInput): Promise; export declare function handleResetContext(_input: ResetContextInput): Promise; export declare function handleWhoami(_input: WhoamiInput): Promise; export declare function handleManageContext(input: ManageContextInput): Promise;