import React from 'react'; import zod from 'zod'; import type { infer as zInfer } from 'zod'; export declare const options: zod.ZodObject<{ apiKey: zod.ZodOptional; dryRun: zod.ZodDefault>; models: zod.ZodDefault>>; path: zod.ZodOptional; snippet: zod.ZodOptional>; }, "strip", zod.ZodTypeAny, { dryRun: boolean; models: string[]; path?: string | undefined; apiKey?: string | undefined; snippet?: "jest" | "pytest" | "vitest" | undefined; }, { path?: string | undefined; apiKey?: string | undefined; dryRun?: boolean | undefined; models?: string[] | undefined; snippet?: "jest" | "pytest" | "vitest" | undefined; }>; type Props = { readonly options: zInfer; }; export default function E2e({ options: { dryRun, models, path, apiKey, snippet }, }: Props): React.JSX.Element; export {};