import { z } from 'zod'; export declare const PluginRuntimeAuthFlowRequestSchema: z.ZodObject<{ projectId: z.ZodString; userId: z.ZodString; pluginId: z.ZodString; installationId: z.ZodString; }, "strip", z.ZodTypeAny, { userId: string; projectId: string; pluginId: string; installationId: string; }, { userId: string; projectId: string; pluginId: string; installationId: string; }>; export type PluginRuntimeAuthFlowRequest = z.infer; export declare const PluginRuntimeAuthFlowResponseSchema: z.ZodObject<{ accessToken: z.ZodString; accessTokenExpiresIn: z.ZodNumber; }, "strip", z.ZodTypeAny, { accessToken: string; accessTokenExpiresIn: number; }, { accessToken: string; accessTokenExpiresIn: number; }>; export type PluginRuntimeAuthFlowResponse = z.infer; //# sourceMappingURL=pluginRuntimeAuthFlowDto.d.ts.map