import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        height: string | number;
        unmount?: boolean | undefined;
        class?: string | undefined | undefined;
        offset?: {
            top?: string;
            bottom?: string;
            left?: string;
            right?: string;
        } | undefined;
    };
    events: {
        intersecting: Event | KeyboardEvent | UIEvent | MouseEvent | FocusEvent | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | ProgressEvent<EventTarget> | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type LazyProps = typeof __propDef.props;
export type LazyEvents = typeof __propDef.events;
export type LazySlots = typeof __propDef.slots;
export default class Lazy extends SvelteComponentTyped<LazyProps, LazyEvents, LazySlots> {
}
export {};
