import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { images: { image: string; title: string; }[]; title: string; description: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type ElementPhotoSectionProps = typeof __propDef.props; export declare type ElementPhotoSectionEvents = typeof __propDef.events; export declare type ElementPhotoSectionSlots = typeof __propDef.slots; export default class ElementPhotoSection extends SvelteComponentTyped { } export {};