import './index.css';
import type { SvelteHTMLElements } from 'svelte/elements';
import type { LightboxAttributes } from './index.d.ts';
type Props = Omit<SvelteHTMLElements['div'], 'class' | 'title'> & LightboxAttributes;
declare const Lightbox: import("svelte").Component<Props, {
    open: () => void;
    close: () => void;
}, "">;
type Lightbox = ReturnType<typeof Lightbox>;
export default Lightbox;
