import React from 'react'; import { type infer as zInfer } from 'zod'; export declare const description = "This is a simple command which syncs the user to the Permit.io"; export declare const options: import("zod").ZodObject<{ apiKey: import("zod").ZodOptional; key: import("zod").ZodOptional; email: import("zod").ZodOptional; firstName: import("zod").ZodOptional; lastName: import("zod").ZodOptional; attributes: import("zod").ZodOptional>; roles: import("zod").ZodOptional, "many">>; }, "strip", import("zod").ZodTypeAny, { key?: string | undefined; apiKey?: string | undefined; attributes?: string[] | undefined; roles?: string[] | undefined; email?: string | undefined; firstName?: string | undefined; lastName?: string | undefined; }, { key?: string | undefined; apiKey?: string | undefined; attributes?: string[] | undefined; roles?: string[] | undefined; email?: string | undefined; firstName?: string | undefined; lastName?: string | undefined; }>; type Props = { options: zInfer; }; export default function User({ options }: Props): React.JSX.Element; export {};