import { LayerId } from '../../types'; import React, { FC, PropsWithChildren } from 'react'; export declare const LayerContext: React.Context<{ id: LayerId; }>; type LayerProviderProps = { id: LayerId; }; declare const LayerProvider: FC>; export default LayerProvider;