import React from 'react'; import zod from 'zod'; export declare const options: zod.ZodObject<{ user: zod.ZodString; userAttributes: zod.ZodOptional; resource: zod.ZodString; resourceAttributes: zod.ZodOptional; action: zod.ZodString; tenant: zod.ZodDefault>; pdpurl: zod.ZodOptional; apiKey: zod.ZodOptional; }, "strip", zod.ZodTypeAny, { resource: string; tenant: string; action: string; user: string; apiKey?: string | undefined; userAttributes?: string | undefined; resourceAttributes?: string | undefined; pdpurl?: string | undefined; }, { resource: string; action: string; user: string; tenant?: string | undefined; apiKey?: string | undefined; userAttributes?: string | undefined; resourceAttributes?: string | undefined; pdpurl?: string | undefined; }>; export type PDPCheckProps = { options: zod.infer; }; export default function Check({ options }: PDPCheckProps): React.JSX.Element;