/** * Hook for processing Trino schema extraction and mapping to Permit resources. * Lint/prettier compliant, strict types, ready for implementation. */ import type { TrinoOptions } from '../../components/env/trino/types.js'; export declare function useTrinoProcessor(): { processTrinoSchema: (options: TrinoOptions) => Promise; status: "error" | "done" | "idle" | "processing"; errorMessage: string | null; };