import { z } from "zod"; export declare const ProjectRefSchema: z.ZodOptional; export declare const CreateProjectInOrgInput: z.ZodObject<{ orgParam: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; orgParam: string; }, { name: string; orgParam: string; }>; export type CreateProjectInOrgInput = z.output; export declare const InitializeProjectInput: z.ZodObject<{ orgParam: z.ZodString; projectRef: z.ZodOptional; projectName: z.ZodString; cwd: z.ZodOptional; }, "strip", z.ZodTypeAny, { orgParam: string; projectName: string; projectRef?: string | undefined; cwd?: string | undefined; }, { orgParam: string; projectName: string; projectRef?: string | undefined; cwd?: string | undefined; }>; export type InitializeProjectInput = z.output; export declare const CommonProjectsInput: z.ZodObject<{ projectRef: z.ZodOptional; configPath: z.ZodOptional; environment: z.ZodDefault>; branch: z.ZodOptional; }, "strip", z.ZodTypeAny, { environment: "preview" | "dev" | "staging" | "prod"; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }, { environment?: "preview" | "dev" | "staging" | "prod" | undefined; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }>; export type CommonProjectsInput = z.output; export declare const TriggerTaskInput: z.ZodObject<{ projectRef: z.ZodOptional; configPath: z.ZodOptional; environment: z.ZodDefault>; branch: z.ZodOptional; } & { taskId: z.ZodString; payload: z.ZodAny; options: z.ZodOptional>; delay: z.ZodOptional>; idempotencyKey: z.ZodOptional; machine: z.ZodOptional>; maxAttempts: z.ZodOptional; maxDuration: z.ZodOptional; tags: z.ZodOptional>; ttl: z.ZodDefault>; }, "strip", z.ZodTypeAny, { ttl: string | number; tags?: string[] | undefined; idempotencyKey?: string | undefined; maxAttempts?: number | undefined; maxDuration?: number | undefined; queue?: { name: string; } | undefined; machine?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined; delay?: string | Date | undefined; }, { tags?: string[] | undefined; idempotencyKey?: string | undefined; maxAttempts?: number | undefined; maxDuration?: number | undefined; queue?: { name: string; } | undefined; machine?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined; delay?: string | Date | undefined; ttl?: string | number | undefined; }>>; }, "strip", z.ZodTypeAny, { environment: "preview" | "dev" | "staging" | "prod"; taskId: string; payload?: any; options?: { ttl: string | number; tags?: string[] | undefined; idempotencyKey?: string | undefined; maxAttempts?: number | undefined; maxDuration?: number | undefined; queue?: { name: string; } | undefined; machine?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined; delay?: string | Date | undefined; } | undefined; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }, { taskId: string; payload?: any; options?: { tags?: string[] | undefined; idempotencyKey?: string | undefined; maxAttempts?: number | undefined; maxDuration?: number | undefined; queue?: { name: string; } | undefined; machine?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined; delay?: string | Date | undefined; ttl?: string | number | undefined; } | undefined; environment?: "preview" | "dev" | "staging" | "prod" | undefined; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }>; export type TriggerTaskInput = z.output; export declare const CommonRunsInput: z.ZodObject<{ projectRef: z.ZodOptional; configPath: z.ZodOptional; environment: z.ZodDefault>; branch: z.ZodOptional; } & { runId: z.ZodString; }, "strip", z.ZodTypeAny, { environment: "preview" | "dev" | "staging" | "prod"; runId: string; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }, { runId: string; environment?: "preview" | "dev" | "staging" | "prod" | undefined; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }>; export type CommonRunsInput = z.output; export declare const WaitForRunInput: z.ZodObject<{ projectRef: z.ZodOptional; configPath: z.ZodOptional; environment: z.ZodDefault>; branch: z.ZodOptional; } & { runId: z.ZodString; } & { timeoutInSeconds: z.ZodDefault; }, "strip", z.ZodTypeAny, { environment: "preview" | "dev" | "staging" | "prod"; runId: string; timeoutInSeconds: number; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }, { runId: string; environment?: "preview" | "dev" | "staging" | "prod" | undefined; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; timeoutInSeconds?: number | undefined; }>; export type WaitForRunInput = z.output; export declare const GetRunDetailsInput: z.ZodObject<{ projectRef: z.ZodOptional; configPath: z.ZodOptional; environment: z.ZodDefault>; branch: z.ZodOptional; } & { runId: z.ZodString; } & { maxTraceLines: z.ZodDefault; cursor: z.ZodOptional; }, "strip", z.ZodTypeAny, { environment: "preview" | "dev" | "staging" | "prod"; runId: string; maxTraceLines: number; branch?: string | undefined; cursor?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }, { runId: string; environment?: "preview" | "dev" | "staging" | "prod" | undefined; branch?: string | undefined; cursor?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; maxTraceLines?: number | undefined; }>; export type GetRunDetailsInput = z.output; export declare const GetSpanDetailsInput: z.ZodObject<{ projectRef: z.ZodOptional; configPath: z.ZodOptional; environment: z.ZodDefault>; branch: z.ZodOptional; } & { runId: z.ZodString; } & { spanId: z.ZodString; }, "strip", z.ZodTypeAny, { environment: "preview" | "dev" | "staging" | "prod"; runId: string; spanId: string; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }, { runId: string; spanId: string; environment?: "preview" | "dev" | "staging" | "prod" | undefined; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }>; export type GetSpanDetailsInput = z.output; export declare const ListRunsInput: z.ZodObject<{ projectRef: z.ZodOptional; configPath: z.ZodOptional; environment: z.ZodDefault>; branch: z.ZodOptional; } & { cursor: z.ZodOptional; limit: z.ZodOptional; status: z.ZodOptional>; taskIdentifier: z.ZodOptional; version: z.ZodOptional; tag: z.ZodOptional; from: z.ZodOptional; to: z.ZodOptional; period: z.ZodOptional; machine: z.ZodOptional>; }, "strip", z.ZodTypeAny, { environment: "preview" | "dev" | "staging" | "prod"; status?: "PENDING_VERSION" | "QUEUED" | "DEQUEUED" | "EXECUTING" | "WAITING" | "COMPLETED" | "CANCELED" | "FAILED" | "CRASHED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED" | "TIMED_OUT" | undefined; version?: string | undefined; machine?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined; taskIdentifier?: string | undefined; limit?: number | undefined; branch?: string | undefined; tag?: string | undefined; period?: string | undefined; from?: string | undefined; to?: string | undefined; cursor?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }, { status?: "PENDING_VERSION" | "QUEUED" | "DEQUEUED" | "EXECUTING" | "WAITING" | "COMPLETED" | "CANCELED" | "FAILED" | "CRASHED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED" | "TIMED_OUT" | undefined; version?: string | undefined; environment?: "preview" | "dev" | "staging" | "prod" | undefined; machine?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined; taskIdentifier?: string | undefined; limit?: number | undefined; branch?: string | undefined; tag?: string | undefined; period?: string | undefined; from?: string | undefined; to?: string | undefined; cursor?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }>; export type ListRunsInput = z.output; export declare const CommonDeployInput: z.ZodObject; configPath: z.ZodOptional; environment: z.ZodDefault>; branch: z.ZodOptional; }, "environment"> & { environment: z.ZodDefault>; }, "strip", z.ZodTypeAny, { environment: "preview" | "staging" | "prod"; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }, { environment?: "preview" | "staging" | "prod" | undefined; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }>; export type CommonDeployInput = z.output; export declare const DeployInput: z.ZodObject; configPath: z.ZodOptional; environment: z.ZodDefault>; branch: z.ZodOptional; }, "environment"> & { environment: z.ZodDefault>; } & { skipPromotion: z.ZodOptional; skipSyncEnvVars: z.ZodOptional; skipUpdateCheck: z.ZodOptional; }, "strip", z.ZodTypeAny, { environment: "preview" | "staging" | "prod"; skipPromotion?: boolean | undefined; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; skipUpdateCheck?: boolean | undefined; skipSyncEnvVars?: boolean | undefined; }, { environment?: "preview" | "staging" | "prod" | undefined; skipPromotion?: boolean | undefined; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; skipUpdateCheck?: boolean | undefined; skipSyncEnvVars?: boolean | undefined; }>; export type DeployInput = z.output; export declare const ListDeploysInput: z.ZodObject; configPath: z.ZodOptional; environment: z.ZodDefault>; branch: z.ZodOptional; }, "environment"> & { environment: z.ZodDefault>; } & { cursor: z.ZodOptional; limit: z.ZodOptional; from: z.ZodOptional; to: z.ZodOptional; period: z.ZodOptional; status: z.ZodOptional>; }, "strip", z.ZodTypeAny, { environment: "preview" | "staging" | "prod"; status?: "CANCELED" | "FAILED" | "TIMED_OUT" | "PENDING" | "BUILDING" | "DEPLOYING" | "DEPLOYED" | undefined; limit?: number | undefined; branch?: string | undefined; period?: string | undefined; from?: string | undefined; to?: string | undefined; cursor?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }, { status?: "CANCELED" | "FAILED" | "TIMED_OUT" | "PENDING" | "BUILDING" | "DEPLOYING" | "DEPLOYED" | undefined; environment?: "preview" | "staging" | "prod" | undefined; limit?: number | undefined; branch?: string | undefined; period?: string | undefined; from?: string | undefined; to?: string | undefined; cursor?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }>; export type ListDeploysInput = z.output; export declare const QueryInput: z.ZodObject<{ projectRef: z.ZodOptional; configPath: z.ZodOptional; environment: z.ZodDefault>; branch: z.ZodOptional; } & { query: z.ZodString; scope: z.ZodDefault>; period: z.ZodOptional; from: z.ZodOptional; to: z.ZodOptional; }, "strip", z.ZodTypeAny, { environment: "preview" | "dev" | "staging" | "prod"; scope: "environment" | "organization" | "project"; query: string; branch?: string | undefined; period?: string | undefined; from?: string | undefined; to?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }, { query: string; environment?: "preview" | "dev" | "staging" | "prod" | undefined; scope?: "environment" | "organization" | "project" | undefined; branch?: string | undefined; period?: string | undefined; from?: string | undefined; to?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }>; export type QueryInput = z.output; export declare const QuerySchemaInput: z.ZodObject; configPath: z.ZodOptional; environment: z.ZodDefault>; branch: z.ZodOptional; }, "environment" | "branch" | "configPath" | "projectRef"> & { table: z.ZodString; }, "strip", z.ZodTypeAny, { environment: "preview" | "dev" | "staging" | "prod"; table: string; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }, { table: string; environment?: "preview" | "dev" | "staging" | "prod" | undefined; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }>; export type QuerySchemaInput = z.output; export declare const ListDashboardsInput: z.ZodObject; configPath: z.ZodOptional; environment: z.ZodDefault>; branch: z.ZodOptional; }, "environment" | "branch" | "configPath" | "projectRef">, "strip", z.ZodTypeAny, { environment: "preview" | "dev" | "staging" | "prod"; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }, { environment?: "preview" | "dev" | "staging" | "prod" | undefined; branch?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }>; export type ListDashboardsInput = z.output; export declare const RunDashboardQueryInput: z.ZodObject<{ projectRef: z.ZodOptional; configPath: z.ZodOptional; environment: z.ZodDefault>; branch: z.ZodOptional; } & { dashboardKey: z.ZodString; widgetId: z.ZodString; period: z.ZodOptional; from: z.ZodOptional; to: z.ZodOptional; scope: z.ZodDefault>; }, "strip", z.ZodTypeAny, { environment: "preview" | "dev" | "staging" | "prod"; scope: "environment" | "organization" | "project"; dashboardKey: string; widgetId: string; branch?: string | undefined; period?: string | undefined; from?: string | undefined; to?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }, { dashboardKey: string; widgetId: string; environment?: "preview" | "dev" | "staging" | "prod" | undefined; scope?: "environment" | "organization" | "project" | undefined; branch?: string | undefined; period?: string | undefined; from?: string | undefined; to?: string | undefined; configPath?: string | undefined; projectRef?: string | undefined; }>; export type RunDashboardQueryInput = z.output; export declare const ListPreviewBranchesInput: z.ZodObject<{ projectRef: z.ZodOptional; configPath: z.ZodOptional; }, "strip", z.ZodTypeAny, { configPath?: string | undefined; projectRef?: string | undefined; }, { configPath?: string | undefined; projectRef?: string | undefined; }>; export type ListPreviewBranchesInput = z.output;