import { EventEmitter } from "../../stencil-public-runtime"; export type SwirlThumbnailFormat = "portrait" | "landscape" | "square"; export type SwirlThumbnailSize = "s" | "m" | "l" | "xl" | "2xl"; export declare class SwirlThumbnail { alt: string; editButtonIcon?: string; editButtonLabel?: string; format?: SwirlThumbnailFormat; interactive?: boolean; progress?: number; progressLabel?: string; removeButtonLabel?: string; showEditButton?: boolean; showRemoveButton?: boolean; size?: SwirlThumbnailSize; src: string; timestamp?: string; edit: EventEmitter; remove: EventEmitter; thumbnailClick: EventEmitter; render(): any; }