import type { Config, Tool } from './@typings'; export declare const getConfig: (html: string) => Promise; export declare const getTools: () => Tool[]; export declare const throwIfTypeIsNot: (data: T, expectedType: 'string' | 'number' | 'bigint' | 'boolean' | 'symbol' | 'undefined' | 'object' | 'function', message: string) => undefined;