import React, { PropsWithChildren } from 'react'; export declare const RESOURCE_PATH = "https://static.allthings.me"; export declare const ResourceProviderContext: React.Context<{ resourcePath: string; }>; export interface IResourceProviderProps { readonly resourcePath?: string; } declare const ResourceProvider: ({ children, resourcePath, }: PropsWithChildren) => JSX.Element; export default ResourceProvider;