import React from 'react'; import zod from 'zod'; export declare const description = "Check if a user has permission to access a URL"; export declare const options: zod.ZodObject<{ user: zod.ZodString; url: zod.ZodString; method: zod.ZodDefault>; tenant: zod.ZodDefault>; userAttributes: zod.ZodOptional>; 'pdp-url': zod.ZodDefault>; apiKey: zod.ZodOptional; }, "strip", zod.ZodTypeAny, { method: string; tenant: string; user: string; url: string; 'pdp-url': string; apiKey?: string | undefined; userAttributes?: string[] | undefined; }, { user: string; url: string; method?: string | undefined; tenant?: string | undefined; apiKey?: string | undefined; userAttributes?: string[] | undefined; 'pdp-url'?: string | undefined; }>; export type PDPCheckUrlProps = { options: zod.infer; }; export default function CheckUrl({ options }: PDPCheckUrlProps): React.JSX.Element;