import React from 'react'; import { type infer as zInfer } from 'zod'; export declare const options: import("zod").ZodObject<{ apiKey: import("zod").ZodOptional; projectId: import("zod").ZodOptional; envId: import("zod").ZodOptional; expandKey: import("zod").ZodDefault>; page: import("zod").ZodDefault>; perPage: import("zod").ZodDefault>; role: import("zod").ZodOptional; tenant: import("zod").ZodOptional; all: import("zod").ZodDefault>; }, "strip", import("zod").ZodTypeAny, { page: number; expandKey: boolean; perPage: number; all: boolean; tenant?: string | undefined; role?: string | undefined; apiKey?: string | undefined; projectId?: string | undefined; envId?: string | undefined; }, { page?: number | undefined; tenant?: string | undefined; role?: string | undefined; apiKey?: string | undefined; expandKey?: boolean | undefined; perPage?: number | undefined; all?: boolean | undefined; projectId?: string | undefined; envId?: string | undefined; }>; type Props = { options: zInfer; }; export default function List({ options }: Props): React.JSX.Element; export {};