import type { Directus } from '../directus.js'; import type { Schema } from '../types/schema.js'; /** * Fetches the fields and relations from the Directus API and returns an unofficial short-hand schema to reduce the tokens used for the LLM. * @param directus - The Directus instance. * @returns The schema. */ export declare function fetchSchema(directus: Directus): Promise;