interface Props { sourceLayer?: string; attributeKey: string; attributes: { id: number; value: T; }[] | undefined; } declare function MapState(props: Props): null; export default MapState;