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