import React from 'react'; import { type infer as zInfer } from 'zod'; import { ActiveState } from '../components/types.js'; export declare const options: import("zod").ZodObject<{ apiKey: import("zod").ZodOptional; }, import("zod/v4/core").$strip>; type Props = { readonly options: zInfer; loginSuccess?: (organisation: ActiveState, project: ActiveState, environment: ActiveState, secret: string) => void; }; export default function Login({ options: { apiKey }, loginSuccess, }: Props): React.JSX.Element; export {};