export declare const listSegmentsTool: { name: string; description: string; inputSchema: { type: string; properties: { parent_segment_id: { type: string; description: string; }; }; required: string[]; }; handler: (args: unknown, _context: unknown) => Promise<{ parentSegmentId: number; segments: { id: string; name: string; description: string | null; createdAt: string; updatedAt: string; }[]; total: number; }>; }; //# sourceMappingURL=listSegments.d.ts.map