import * as lit_html from 'lit-html'; import * as lit from 'lit'; import { LitElement } from 'lit'; /** * * @since 1.1.0 * @status stable * * @tagname kemet-carousel-slide * @summary A container for a slide in the carousel. * * @prop {boolean} selected - Determines if the slide is selected. * */ declare class KemetCarouselSlide extends LitElement { static styles: lit.CSSResult[]; selected: boolean; static get properties(): { 'aria-hidden': { type: StringConstructor; reflect: boolean; }; }; constructor(); render(): lit_html.TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'kemet-carousel-slide': KemetCarouselSlide; } } export { KemetCarouselSlide as default };