/// export interface IAbortableFetch { abort: () => void; promise: Promise; } export declare const NuiProvider: ({ resource, children, timeout, }: { timeout?: number | false; resource: string; children: JSX.Element; }) => JSX.Element;