import type { Formula } from '@toddledev/core/dist/formula/formula'; import type { GlobalFormulas } from '@toddledev/core/dist/formula/formulaTypes'; import type { ApiService } from './ssr.types'; export declare class ToddleApiService { private service; private globalFormulas; constructor({ service, globalFormulas, }: { service: ApiService; globalFormulas: GlobalFormulas; }); /** * Traverse all formulas in the API Service. * @returns An iterable that yields the path and formula. */ formulasInService(): Generator<[(string | number)[], Formula]>; get name(): string; get baseUrl(): Formula | undefined; get docsUrl(): Formula | undefined; get apiKey(): Formula | undefined; get meta(): Record | { projectUrl?: Formula; } | undefined; }