/** * Represents the `IExpandable` interface. * * @public */ export interface IExpandable { expand(): void; collapse(): void; toggle(): void; } //# sourceMappingURL=IExpandable.d.ts.map