import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { observer?: IntersectionObserverInit | undefined; }; events: { visible: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; placeholder: {}; }; }; export declare type LazyProps = typeof __propDef.props; export declare type LazyEvents = typeof __propDef.events; export declare type LazySlots = typeof __propDef.slots; export default class Lazy extends SvelteComponentTyped { } export {};