import type { CustomCommand } from "just-bash/browser"; import type { StorageNamespace } from "../context"; export interface DescribedCommand { command: CustomCommand; promptSnippet: string; isAvailable?: () => boolean; } export interface SharedCustomCommandOptions { ns: StorageNamespace; includeImageSearch?: boolean; } export interface CustomCommandsResult { commands: CustomCommand[]; promptSnippets: string[]; } export declare function getSharedCustomCommands(options: SharedCustomCommandOptions): CustomCommandsResult; //# sourceMappingURL=custom-commands.d.ts.map