import { ComponentInterface } from '../../../stencil-public-runtime'; export declare class CarouselSlide implements ComponentInterface { $link: HTMLAnchorElement; $content: HTMLElement; $el: HTMLElement; src: string; alt: string; href: string; align: 'left' | 'center' | 'right'; position: 'top' | 'center' | 'bottom'; clickable: boolean; lazy: boolean; threshold: number; imgWidth: number; imgHeight: number; imgAspectRatio: string; fallbackSrc: string; linkTag: string; hrefProp: string; componentDidLoad(): void; getAlignment(): "center" | "start" | "end"; getPosition(): "center" | "start" | "end"; render(): any; }