/** * Command parsing helper for `/quota_status`. * * This module provides JSON argument parsing used by the /quota_status * slash command and tool handler. */ /** * Parse optional JSON arguments from a command input string. */ export declare function parseOptionalJsonArgs(input: string | undefined): { ok: true; value: Record; } | { ok: false; error: string; }; //# sourceMappingURL=command-parsing.d.ts.map