import React from 'react'; import zod from 'zod'; export declare const options: zod.ZodObject<{ projectKey: zod.ZodOptional; environmentKey: zod.ZodOptional; statsUrl: zod.ZodOptional; apiKey: zod.ZodOptional; top: zod.ZodDefault; }, "strip", zod.ZodTypeAny, { top: boolean; apiKey?: string | undefined; projectKey?: string | undefined; environmentKey?: string | undefined; statsUrl?: string | undefined; }, { apiKey?: string | undefined; projectKey?: string | undefined; environmentKey?: string | undefined; statsUrl?: string | undefined; top?: boolean | undefined; }>; export type PDPStatsProps = { options: zod.infer; }; export default function Stats({ options }: PDPStatsProps): React.JSX.Element;