/** * @license * * Copyright IBM Corp. 2025 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ import emptyState from './src/empty-state.js'; /** * EmptyState. * * @element clabs-empty-state * */ declare class CLABSEmptyState extends emptyState { /** * Lifecycle method called after the first render. * Ensures the illustration slot is checked for content. */ firstUpdated(): void; /** * Checks whether the "illustration" slot has assigned elements. * Updates the `hasIllustration` property accordingly. */ checkSlotContent(): void; /** * Renders the template while passing in class functionality * * @returns {TemplateResult<1>} */ render(): import("lit-html").TemplateResult<1>; } export default CLABSEmptyState;