import React from 'react'; import zod, { type infer as zInfer } from 'zod'; export declare const description = "A wizard to take users through all the steps, from configuring policy to enforcing it."; export declare const options: zod.ZodObject<{ apiKey: zod.ZodOptional; }, "strip", zod.ZodTypeAny, { apiKey?: string | undefined; }, { apiKey?: string | undefined; }>; type Props = { options: zInfer; }; export default function Init({ options }: Props): React.JSX.Element; export {};