import { SvelteComponentTyped } from "svelte";
import type { Bounds, GroundOverlayOptions } from "../types";
declare const __propDef: {
    props: {
        url: string;
        bounds: Bounds;
        groundOverlayOptions?: GroundOverlayOptions | undefined;
    };
    events: {
        load: CustomEvent<any>;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type GroundOverlayProps = typeof __propDef.props;
export type GroundOverlayEvents = typeof __propDef.events;
export type GroundOverlaySlots = typeof __propDef.slots;
export default class GroundOverlay extends SvelteComponentTyped<GroundOverlayProps, GroundOverlayEvents, GroundOverlaySlots> {
}
export {};
