import type { SlashCommand } from "@mariozechner/pi-tui";
import type { OpenClawConfig } from "../config/types.js";
export type ParsedCommand = {
    name: string;
    args: string;
};
export type SlashCommandOptions = {
    cfg?: OpenClawConfig;
    provider?: string;
    model?: string;
    local?: boolean;
};
export declare function parseCommand(input: string): ParsedCommand;
export declare function getSlashCommands(options?: SlashCommandOptions): SlashCommand[];
export declare function helpText(options?: SlashCommandOptions): string;
