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