import React from 'react'; import zod from 'zod'; import type { TrinoOptions } from '../../../components/env/trino/types.js'; export declare const description = "Apply permissions policy from a Trino schema, creating resources from catalogs, schemas, tables, columns."; export declare const options: zod.ZodObject<{ apiKey: zod.ZodOptional; url: zod.ZodString; user: zod.ZodString; password: zod.ZodOptional; catalog: zod.ZodOptional; schema: zod.ZodOptional; createColumnResources: zod.ZodDefault>; }, "strip", zod.ZodTypeAny, { user: string; url: string; createColumnResources: boolean; apiKey?: string | undefined; catalog?: string | undefined; schema?: string | undefined; password?: string | undefined; }, { user: string; url: string; apiKey?: string | undefined; catalog?: string | undefined; schema?: string | undefined; createColumnResources?: boolean | undefined; password?: string | undefined; }>; export default function Trino({ options }: { options: TrinoOptions; }): React.JSX.Element;