import { TableSpec } from '../types'; declare const getTableSpec: ({ baseUrl, table, module, path, spec, }: { baseUrl?: string | undefined; table?: string | undefined; module?: string | undefined; path?: string | undefined; spec?: TableSpec | undefined; }) => { tableSpec: TableSpec | undefined; loading: boolean; error: undefined; }; export default getTableSpec;