/// import * as React from "react"; interface BicyclingLayerState { bicyclingLayer: google.maps.BicyclingLayer | null; } export interface BicyclingLayerProps { onLoad?: (bicyclingLayer: google.maps.BicyclingLayer) => void; onUnmount?: (bicyclingLayer: google.maps.BicyclingLayer) => void; } export declare class BicyclingLayer extends React.PureComponent { static contextType: React.Context; state: { bicyclingLayer: null; }; setBicyclingLayerCallback: () => void; componentDidMount(): void; componentWillUnmount(): void; render(): null; } export default BicyclingLayer;