import React from 'react'; import zod from 'zod'; import { type infer as zInfer } from 'zod'; export declare const description = "Apply permissions policy from an OpenAPI spec using the `-x-permit` extensions."; export declare const options: zod.ZodObject<{ apiKey: zod.ZodOptional; specFile: zod.ZodOptional; }, "strip", zod.ZodTypeAny, { apiKey?: string | undefined; specFile?: string | undefined; }, { apiKey?: string | undefined; specFile?: string | undefined; }>; type Props = { readonly options: zInfer; }; export default function Openapi({ options: { apiKey, specFile } }: Props): React.JSX.Element; export {};