import React from 'react'; import { type infer as zInfer } from 'zod'; export declare const description = "Creates a new URL mapping configuration > Permit api create proxy --api-key abc --key valid-key --name name --auth-mechanism bearer --secret your-secret --mapping-rules \"get|https://api.example.com|users|getUsers|10|{Authorization:Bearer abc,X-Custom:v7}|regex\" / --mapping-rule-url valid-url ..."; export declare const options: import("zod").ZodObject<{ apiKey: import("zod").ZodOptional; secret: import("zod").ZodOptional; key: import("zod").ZodOptional; name: import("zod").ZodOptional; authMechanism: import("zod").ZodOptional, import("zod").ZodLiteral<"Basic">, import("zod").ZodLiteral<"Headers">]>>>; mappingRules: import("zod").ZodOptional>; mappingRuleMethod: import("zod").ZodOptional; mappingRuleUrl: import("zod").ZodOptional; mappingRuleResource: import("zod").ZodOptional; mappingRuleAction: import("zod").ZodOptional; mappingRulePriority: import("zod").ZodOptional; mappingRuleHeaders: import("zod").ZodOptional>; mappingRuleUrlType: import("zod").ZodOptional, import("zod").ZodLiteral<"none">]>>; }, "strip", import("zod").ZodTypeAny, { key?: string | undefined; apiKey?: string | undefined; name?: string | undefined; secret?: string | undefined; authMechanism?: "Bearer" | "Basic" | "Headers" | undefined; mappingRules?: string[] | undefined; mappingRuleMethod?: string | undefined; mappingRuleUrl?: string | undefined; mappingRuleResource?: string | undefined; mappingRuleAction?: string | undefined; mappingRulePriority?: number | undefined; mappingRuleHeaders?: string[] | undefined; mappingRuleUrlType?: "regex" | "none" | undefined; }, { key?: string | undefined; apiKey?: string | undefined; name?: string | undefined; secret?: string | undefined; authMechanism?: "Bearer" | "Basic" | "Headers" | undefined; mappingRules?: string[] | undefined; mappingRuleMethod?: string | undefined; mappingRuleUrl?: string | undefined; mappingRuleResource?: string | undefined; mappingRuleAction?: string | undefined; mappingRulePriority?: number | undefined; mappingRuleHeaders?: string[] | undefined; mappingRuleUrlType?: "regex" | "none" | undefined; }>; type Props = { options: zInfer; }; export default function Proxy({ options }: Props): React.JSX.Element; export {};