import React from 'react'; import zod from 'zod'; import { type infer as zInfer } from 'zod'; export declare const options: zod.ZodObject<{ apiKey: zod.ZodOptional; }, "strip", zod.ZodTypeAny, { apiKey?: string | undefined; }, { apiKey?: string | undefined; }>; export type EnvSelectProps = { readonly options: zInfer; }; export default function Select({ options }: EnvSelectProps): React.JSX.Element;