import React from 'react'; import zod from 'zod'; export declare const description = "Create a new Policy table for Role Based Access Control"; export declare const options: zod.ZodObject<{ apiKey: zod.ZodOptional; resources: zod.ZodOptional>; actions: zod.ZodOptional>; roles: zod.ZodOptional>; }, "strip", zod.ZodTypeAny, { resources?: string[] | undefined; apiKey?: string | undefined; actions?: string[] | undefined; roles?: string[] | undefined; }, { resources?: string[] | undefined; apiKey?: string | undefined; actions?: string[] | undefined; roles?: string[] | undefined; }>; type Props = { options: zod.infer; }; export default function Simple({ options }: Props): React.JSX.Element; export {};