UNPKG

@esri/calcite-components

Version:

Web Components for Esri's Calcite Design System.

20 lines (19 loc) 572 B
import { FunctionalComponent } from "../../stencil-public-runtime"; import { Position, Scale } from "../interfaces"; interface ExpandToggleProps { expanded: boolean; intlExpand: string; intlCollapse: string; el: HTMLElement; position: Position; tooltip?: HTMLCalciteTooltipElement; toggle: () => void; ref?: (el: HTMLElement) => void; scale?: Scale; } export declare function toggleChildActionText({ el, expanded }: { el: HTMLElement; expanded: boolean; }): void; export declare const ExpandToggle: FunctionalComponent<ExpandToggleProps>; export {};