import * as raf from './raf-polyfill'; import * as utils from './utils'; import * as exts from './extensions'; import * as anime from './anime'; import * as patch from './patch'; import * as mount from './mount'; import * as dom from './dom'; import * as ws from './websocket'; import * as http from './http'; import * as tweened from './tween'; import * as inter from './interpolations'; export declare const Markup: { dom: typeof dom; patch: typeof patch; mount: typeof mount; raf: typeof raf; http: typeof http; utils: typeof utils; ws: typeof ws; exts: typeof exts; anime: typeof anime; tweened: typeof tweened; inter: typeof inter; fetch: ((input: RequestInfo, init?: RequestInit | undefined) => Promise) & typeof globalThis.fetch; Promise: PromiseConstructor; DOMException: { new (message?: string | undefined, name?: string | undefined): DOMException; prototype: DOMException; readonly ABORT_ERR: number; readonly DATA_CLONE_ERR: number; readonly DOMSTRING_SIZE_ERR: number; readonly HIERARCHY_REQUEST_ERR: number; readonly INDEX_SIZE_ERR: number; readonly INUSE_ATTRIBUTE_ERR: number; readonly INVALID_ACCESS_ERR: number; readonly INVALID_CHARACTER_ERR: number; readonly INVALID_MODIFICATION_ERR: number; readonly INVALID_NODE_TYPE_ERR: number; readonly INVALID_STATE_ERR: number; readonly NAMESPACE_ERR: number; readonly NETWORK_ERR: number; readonly NOT_FOUND_ERR: number; readonly NOT_SUPPORTED_ERR: number; readonly NO_DATA_ALLOWED_ERR: number; readonly NO_MODIFICATION_ALLOWED_ERR: number; readonly QUOTA_EXCEEDED_ERR: number; readonly SECURITY_ERR: number; readonly SYNTAX_ERR: number; readonly TIMEOUT_ERR: number; readonly TYPE_MISMATCH_ERR: number; readonly URL_MISMATCH_ERR: number; readonly VALIDATION_ERR: number; readonly WRONG_DOCUMENT_ERR: number; }; Headers: { new (init?: Record | Headers | string[][] | undefined): Headers; prototype: Headers; }; Request: { new (input: RequestInfo, init?: RequestInit | undefined): Request; prototype: Request; }; Response: { new (body?: string | ArrayBuffer | ArrayBufferView | Blob | FormData | URLSearchParams | ReadableStream | null | undefined, init?: ResponseInit | undefined): Response; prototype: Response; error(): Response; redirect(url: string, status?: number | undefined): Response; }; }; export default Markup;