import maplibregl from 'maplibre-gl';
import type { Listener, Event } from '../types.js';
interface Props extends maplibregl.FullscreenControlOptions {
    position?: maplibregl.ControlPosition;
    onfullscreenstart?: Listener<Event<maplibregl.FullscreenControl>>;
    onfullscreenend?: Listener<Event<maplibregl.FullscreenControl>>;
}
declare const FullScreenControl: import("svelte").Component<Props, {}, "">;
type FullScreenControl = ReturnType<typeof FullScreenControl>;
export default FullScreenControl;
