import type { Snippet } from 'svelte';
import maplibregl from 'maplibre-gl';
interface Props {
    position?: maplibregl.ControlPosition;
    control?: maplibregl.IControl;
    group?: boolean;
    class?: string;
    children?: Snippet;
}
declare const CustomControl: import("svelte").Component<Props, {}, "">;
type CustomControl = ReturnType<typeof CustomControl>;
export default CustomControl;
