import { CSSResultArray, TemplateResult } from 'lit'; import { LuzmoButtonBase } from './button-base'; declare const LuzmoClearButton_base: typeof LuzmoButtonBase & { new (...args: any[]): import("../..").SizedElementInterface; prototype: import("../..").SizedElementInterface; }; /** * @element luzmo-clear-button * * @slot - text label of the Clear Button * @slot icon - The icon to use for Clear Button */ export declare class LuzmoClearButton extends LuzmoClearButton_base { static get styles(): CSSResultArray; /** * The visual variant to apply to this button. */ variant: 'overBackground' | ''; protected get buttonContent(): TemplateResult[]; protected render(): TemplateResult; } export {};