import React from 'react'; import { IAzureDataSourceStatefulProviderProps } from '../types'; declare const AzureMapDataSourceContext: React.Context; declare const Provider: React.Provider, AzureMapDataSourceConsumer: React.Consumer; /** * @param id * @param children * @param options * @param events * @param dataFromUrl Async Data from URL * @param collection Use for contain Feature Collection !All Feature child will be ignored when collection value will change */ declare const AzureMapDataSourceStatefulProvider: ({ id, children, options, events, dataFromUrl, collection }: IAzureDataSourceStatefulProviderProps) => JSX.Element; export { AzureMapDataSourceContext, AzureMapDataSourceConsumer, AzureMapDataSourceStatefulProvider as AzureMapDataSourceProvider, Provider as AzureMapDataSourceRawProvider };