/** SDK-owned platform module. This implementation is maintained in goodvibes-sdk. */ export declare const WORKLIST_TOOL_SCHEMA: { readonly type: "object"; readonly properties: { readonly mode: { readonly type: "string"; readonly enum: readonly ["create", "list", "show", "add-item", "complete-item", "reopen-item", "remove-item"]; }; readonly view: { readonly type: "string"; readonly enum: readonly ["summary", "full"]; }; readonly worklistId: { readonly type: "string"; }; readonly title: { readonly type: "string"; }; readonly itemId: { readonly type: "string"; }; readonly text: { readonly type: "string"; }; readonly owner: { readonly type: "string"; }; readonly priority: { readonly type: "string"; readonly enum: readonly ["low", "medium", "high"]; }; }; readonly required: readonly ["mode"]; readonly additionalProperties: false; }; export type WorklistToolInput = { mode: 'create' | 'list' | 'show' | 'add-item' | 'complete-item' | 'reopen-item' | 'remove-item'; view?: 'summary' | 'full' | undefined; worklistId?: string | undefined; title?: string | undefined; itemId?: string | undefined; text?: string | undefined; owner?: string | undefined; priority?: 'low' | 'medium' | 'high' | undefined; }; //# sourceMappingURL=schema.d.ts.map