import { CSSResultArray, TemplateResult } from 'lit'; import './../icon'; import { ButtonStaticColors } from './button'; import { LuzmoButtonBase } from './button-base'; declare const LuzmoCloseButton_base: typeof LuzmoButtonBase & { new (...args: any[]): import("../..").SizedElementInterface; prototype: import("../..").SizedElementInterface; }; /** * @element luzmo-close-button * * @slot - text label of the Close Button * @slot icon - The icon to use for Close Button */ export declare class LuzmoCloseButton extends LuzmoCloseButton_base { static get styles(): CSSResultArray; /** * The visual variant to apply to this button. */ variant: ButtonStaticColors | ''; staticColor?: 'black' | 'white'; protected get buttonContent(): TemplateResult[]; } export {};