import * as z from "zod/v3"; export type GetLogsForProcessGlobals = { appId?: string | undefined; }; export type GetLogsForProcessRequest = { appId?: string | undefined; processId: string; follow?: boolean | undefined; tailLines?: number | undefined; }; /** @internal */ export type GetLogsForProcessRequest$Outbound = { appId?: string | undefined; processId: string; follow?: boolean | undefined; tailLines: number; }; /** @internal */ export declare const GetLogsForProcessRequest$outboundSchema: z.ZodType; export declare function getLogsForProcessRequestToJSON(getLogsForProcessRequest: GetLogsForProcessRequest): string; //# sourceMappingURL=getlogsforprocess.d.ts.map