import { ComponentInterface } from '../../stencil-public-runtime'; /** * An image that is shown in the `` component. Should only be used in conjunction with it. */ export declare class InoCarouselSlide implements ComponentInterface { el: HTMLInoCarouselSlideElement; /** * Link to the image */ src: string; /** * Selected state controlled by the `` */ selected: boolean; /** * Value of the slide */ value: string; render(): any; }