import type { HTMLAttributes } from '../../../internal/html-attributes.js'; import type { PropsWithElement } from '../../../internal/props-with-element.js'; export interface QrCodeOverlayProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> { } declare const Overlay: import("svelte").Component; type Overlay = ReturnType; export default Overlay;