import type { GalleriaProps } from 'primevue'; import type { WtGalleriaItem } from './types/WtGalleria.d.ts'; /** * @emits {number} download - Fires when download button is clicked. Emits index of the image to download * @emits {number} delete - Fires when delete button is clicked. Emits index of the image to delete */ interface Props extends GalleriaProps { /** * Array of image objects. Each object should have: src (string), thumbnailSrc (string), title (string), description (string, optional) * @type {WtGalleriaItem[]} * @default [] */ value: WtGalleriaItem[]; } type __VLS_Props = Props; type __VLS_ModelProps = { /** * [V-MODEL] Controls the visibility of the gallery modal. Use v-model:visible for two-way binding * @model visible */ 'visible': boolean; /** * [V-MODEL] Index of the currently displayed image. Use v-model:active-index for two-way binding * @model activeIndex */ 'activeIndex'?: number; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { delete: (...args: any[]) => void; download: (...args: any[]) => void; "update:visible": (value: boolean) => void; "update:activeIndex": (value: number) => void; }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onDelete?: (...args: any[]) => any; onDownload?: (...args: any[]) => any; "onUpdate:visible"?: (value: boolean) => any; "onUpdate:activeIndex"?: (value: number) => any; }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;