import { EventEmitter } from '../../stencil-public-runtime'; import type { BlindVariant } from './blind.types'; export declare class Blind { /** * Collapsed state */ collapsed: boolean; /** * Label of blind */ label?: string; /** * Secondary label inside blind header */ sublabel?: string; /** * Optional icon to be displayed next to the header label */ icon?: string; /** * Blind variant */ variant: BlindVariant; /** * Collapsed state changed */ collapsedChange: EventEmitter; hostElement: HTMLIxBlindElement; private chevronRef?; private blindId; constructor(); private onHeaderClick; componentDidLoad(): void; get content(): Element | null; animation(isCollapsed: boolean): void; private animateCollapse; private rotateChevronUp; private rotateChevronDown; render(): any; }