import { PositionKey } from "../../constants"; declare const ZOOM_SIZE: { readonly LARGE: 1; readonly SMALL: 2; }; interface ZoomControlProps { position: PositionKey; size: keyof typeof ZOOM_SIZE; legendDisabled: boolean; } export declare const ZoomControl: ({ position, size, legendDisabled, }: ZoomControlProps) => null; export {};