import type { LemaCollection } from '../../types/lema'; import type { LemaFieldRecord } from './generate-interface'; export declare const fetchSchema: ({ endpoint, key, workspace }: { endpoint: string; key: string; workspace: string; }) => Promise<{ collections: Record>; fields: Record; } | null>;