import { CSSProperties, MutableRefObject, RefObject } from 'react'; import { Bounds } from '../../../types'; export declare type BaseLayerProps = { containerRef: MutableRefObject | RefObject; bounds: Bounds; style?: CSSProperties; className?: string; };