/** * @license * Copyright 2023 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { LitElement, PropertyValueMap } from "lit"; export declare enum Direction { HORIZONTAL = "horizontal", VERTICAL = "vertical" } export declare class Splitter extends LitElement { #private; direction: Direction; name: string; minSegmentSizeHorizontal: number; minSegmentSizeVertical: number; split: number[]; showQuickExpandCollapse: boolean; static styles: import("lit").CSSResult; connectedCallback(): void; disconnectedCallback(): void; firstUpdated(): void; protected willUpdate(changedProperties: PropertyValueMap<{ direction: Direction; }> | Map): void; render(): import("lit-html").TemplateResult<1>; } //# sourceMappingURL=splitter.d.ts.map