/** * Copyright Aquera Inc 2023 * * This source code is licensed under the BSD-3-Clause license found in the * LICENSE file in the root directory of this source tree. */ import { CSSResultArray, TemplateResult } from 'lit'; import NileElement from '../internal/nile-element'; /** * Nile empty-state component. * * @tag nile-empty-state * */ export declare class NileEmptyState extends NileElement { /** * The styles for nile-empty-state * @remarks If you are extending this class you can extend the base styles with super. Eg `return [super(), myCustomStyles]` */ static get styles(): CSSResultArray; size: 'sm' | 'md' | 'lg'; variant: 'flat' | 'content' | 'tonal'; icon: string; grayscale: boolean; text: String; subText: String; svgIconUrl: string; svgIconSize: number; svgIconColor: string; /** * Render method * @slot This is a slot test */ render(): TemplateResult; } export default NileEmptyState; declare global { interface HTMLElementTagNameMap { 'nile-empty-state': NileEmptyState; } }