type SlashDispatch = { kind: "dispatch"; args: readonly string[]; } | { kind: "quit"; } | { kind: "error"; message: string; usage?: string; }; export declare function parseSlashInput(input: string): readonly string[]; export declare function isSlashQuit(args: readonly string[]): boolean; export declare function resolveSlashCommand(args: readonly string[]): SlashDispatch; export {}; //# sourceMappingURL=slash.d.ts.map