import { SvelteComponentTyped } from "svelte"; import type { Slide } from '../../types/carousel-slide'; import type { Action } from '../../types/lightbox-action'; declare const __propDef: { props: { slides?: Slide[] | undefined; activeSlide?: number | undefined; handleClose: () => void; showClose?: boolean | undefined; allowRotation?: boolean | undefined; allowPrint?: boolean | undefined; allowDownload?: boolean | undefined; actions?: Action[] | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type LightBoxProps = typeof __propDef.props; export declare type LightBoxEvents = typeof __propDef.events; export declare type LightBoxSlots = typeof __propDef.slots; export default class LightBox extends SvelteComponentTyped { } export {};