import { SvelteComponentTyped } from "svelte"; import type { Slide } from '../../types/carousel-slide'; import type { Action } from '../../types/lightbox-action'; import { type ActionArray } from '../../utils/useActions'; declare const __propDef: { props: { [x: string]: any; use?: ActionArray | undefined; images?: Slide[] | undefined; handleClick?: ((index: number) => void) | undefined; includeLightBox?: boolean | undefined; activeSlide?: number | undefined; showClose?: boolean | undefined; lightboxActions?: Action[] | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type ImagesProps = typeof __propDef.props; export declare type ImagesEvents = typeof __propDef.events; export declare type ImagesSlots = typeof __propDef.slots; export default class Images extends SvelteComponentTyped { } export {};