import { z } from 'zod'; import { APIClient } from '@agentuity/api'; import { type Thread } from './list.ts'; export declare const _ThreadGetRequestSchema: z.ZodObject<{ id: z.ZodString; }, z.core.$strip>; export declare const ThreadGetResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{ success: z.ZodLiteral; message: z.ZodString; code: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ success: z.ZodLiteral; data: z.ZodObject<{ id: z.ZodString; created_at: z.ZodString; updated_at: z.ZodString; deleted: z.ZodBoolean; deleted_at: z.ZodNullable; deleted_by: z.ZodNullable; org_id: z.ZodString; project_id: z.ZodString; user_data: z.ZodOptional>; metadata: z.ZodOptional>>; }, z.core.$strip>; }, z.core.$strip>], "success">; export type ThreadGetRequest = z.infer; export type ThreadGetResponse = z.infer; /** * Get a single thread by id * * @param client * @param request * @returns */ export declare function threadGet(client: APIClient, request: ThreadGetRequest): Promise; //# sourceMappingURL=get.d.ts.map