export type RobotListOptions = { category?: string; search?: string; limit?: number; cursor?: string; }; export type RobotListItem = { name: string; title?: string; summary: string; category?: string; }; export type RobotListResult = { robots: RobotListItem[]; nextCursor?: string; }; export type RobotParamHelp = { name: string; type: string; description?: string; }; export type RobotHelp = { name: string; summary: string; requiredParams: RobotParamHelp[]; optionalParams: RobotParamHelp[]; examples?: Array<{ description: string; snippet: Record; }>; }; export type RobotHelpOptions = { robotName: string; detailLevel?: 'summary' | 'params' | 'examples' | 'full'; }; export declare const listRobots: (options?: RobotListOptions) => RobotListResult; export declare const getRobotHelp: (options: RobotHelpOptions) => RobotHelp; export declare const isKnownRobot: (robotName: string) => boolean; //# sourceMappingURL=robots.d.ts.map