import { OSM } from 'ol/source';
import { default as LayerRaster, RLayerRasterProps } from './RLayerRaster';
/**
 * @propsfor ROSM
 */
export interface ROSMProps extends RLayerRasterProps {
}
/**
 * An OpenStreetMap layer
 *
 * Requires an `RMap` context
 */
export default class ROSM extends LayerRaster<ROSMProps> {
    source: OSM;
    constructor(props: Readonly<ROSMProps>);
    protected refresh(prevProps?: ROSMProps): void;
}
//# sourceMappingURL=ROSM.d.ts.map