import type { ThumbnailDefinition, ThumbnailVariant } from './_internal/components/Thumbnail/Thumbnail.types'; export * from './_internal/components/Thumbnail/Thumbnail.types'; declare const _default: typeof __VLS_export; export default _default; declare const __VLS_export: (__VLS_props: NonNullable>["props"], __VLS_ctx?: __VLS_PrettifyLocal>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable>["expose"], __VLS_setup?: Promise<{ props: import("vue").PublicProps & __VLS_PrettifyLocal<{ /** * Thumbnail data containing and id and the image url */ thumbnail: ThumbnailItem; /** * Thumbnail alt text for the image * @default '' */ altText?: string; /** * Whether the thumbnail has some transparency or is fully opaque * @default 'opaque' */ variant?: ThumbnailVariant; } & { onClick?: ((index: number) => any) | undefined; onRemove?: ((index: number) => any) | undefined; }> & (typeof globalThis extends { __VLS_PROPS_FALLBACK: infer P; } ? P : {}); expose: (exposed: {}) => void; attrs: any; slots: { hint?: (props: {}) => any; }; emit: ((evt: "click", index: number) => void) & ((evt: "remove", index: number) => void); }>) => import("vue").VNode & { __ctx?: Awaited; }; type __VLS_PrettifyLocal = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};