/// import { IAbortableFetch } from "../providers/NuiProvider"; export interface NuiContext { resource: string; callbackTimeout: number; send: (e: string, data?: unknown, resource?: string) => Promise; sendAbortable: (e: string, data?: unknown, resource?: string) => IAbortableFetch; } export declare const NuiContext: import("react").Context;