import { z } from 'zod'; declare const findLabels: { name: "find-labels"; description: string; parameters: { searchText: z.ZodOptional; limit: z.ZodDefault; cursor: z.ZodOptional; }; outputSchema: { labels: z.ZodArray>>; order: z.ZodCatch>; isFavorite: z.ZodBoolean; }, z.core.$strip>>; nextCursor: z.ZodOptional; totalCount: z.ZodNumber; hasMore: z.ZodBoolean; sharedLabels: z.ZodArray; appliedFilters: z.ZodRecord; }; annotations: { readOnlyHint: true; destructiveHint: false; idempotentHint: true; }; execute(args: { limit: number; searchText?: string | undefined; cursor?: string | undefined; }, client: import('@doist/todoist-sdk').TodoistApi): Promise<{ textContent: string; structuredContent: { labels: { id: string; name: string; isFavorite: boolean; color?: "berry_red" | "red" | "orange" | "yellow" | "olive_green" | "lime_green" | "green" | "mint_green" | "teal" | "sky_blue" | "light_blue" | "blue" | "grape" | "violet" | "lavender" | "magenta" | "salmon" | "charcoal" | "grey" | "taupe" | undefined; order?: number | undefined; }[]; nextCursor: string | undefined; totalCount: number; hasMore: boolean; sharedLabels: string[]; appliedFilters: { searchText: string; limit?: undefined; cursor?: undefined; } | { limit: number; cursor: string | undefined; searchText?: undefined; }; }; }>; }; export { findLabels }; //# sourceMappingURL=find-labels.d.ts.map