import React from 'react'; import { type infer as zInfer } from 'zod'; export declare const options: import("zod").ZodObject<{ apiKey: import("zod").ZodOptional; projectId: import("zod").ZodOptional; envId: import("zod").ZodOptional; user: import("zod").ZodString; role: import("zod").ZodString; tenant: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { tenant: string; role: string; user: string; apiKey?: string | undefined; projectId?: string | undefined; envId?: string | undefined; }, { tenant: string; role: string; user: string; apiKey?: string | undefined; projectId?: string | undefined; envId?: string | undefined; }>; type Props = { options: zInfer; }; export default function Unassign({ options }: Props): React.JSX.Element; export {};