import React from 'react'; import zod from 'zod'; export declare const description = "Test PDP against audit logs to find differences in behavior"; export declare const options: zod.ZodObject<{ apiKey: zod.ZodOptional; pdpUrl: zod.ZodDefault; timeFrame: zod.ZodDefault; sourcePdp: zod.ZodOptional; users: zod.ZodOptional>; resources: zod.ZodOptional>; tenant: zod.ZodOptional; action: zod.ZodOptional; decision: zod.ZodOptional>; maxLogs: zod.ZodDefault>; }, "strip", zod.ZodTypeAny, { pdpUrl: string; timeFrame: number; maxLogs: number; tenant?: string | undefined; users?: string[] | undefined; decision?: "allow" | "deny" | undefined; resources?: string[] | undefined; action?: string | undefined; apiKey?: string | undefined; sourcePdp?: string | undefined; }, { tenant?: string | undefined; users?: string[] | undefined; decision?: "allow" | "deny" | undefined; resources?: string[] | undefined; action?: string | undefined; apiKey?: string | undefined; pdpUrl?: string | undefined; timeFrame?: number | undefined; sourcePdp?: string | undefined; maxLogs?: number | undefined; }>; type Props = { options: zod.infer; }; export default function Audit({ options }: Props): React.JSX.Element; export {};