import { z } from 'zod'; import { APIClient } from '@agentuity/api'; export declare const _SessionLogsRequestSchema: z.ZodObject<{ id: z.ZodString; }, z.core.$strip>; export declare const LogSchema: z.ZodObject<{ body: z.ZodString; severity: z.ZodString; timestamp: z.ZodString; }, z.core.$strip>; export declare const SessionLogsResponse: z.ZodArray>; export declare const SessionLogsResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{ success: z.ZodLiteral; message: z.ZodString; code: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ success: z.ZodLiteral; data: z.ZodArray>; }, z.core.$strip>], "success">; type SessionLogsRequest = z.infer; export type SessionLog = z.infer; export type SessionLogs = SessionLog[]; /** * Get logs for a session from the App API * * @param client APIClient configured for the App API base URL * @param request * @returns */ export declare function sessionLogs(client: APIClient, request: SessionLogsRequest): Promise; export {}; //# sourceMappingURL=logs.d.ts.map