import { PropertyValueMap } from "lit"; import SgdsElement from "../../base/sgds-element"; /** * @summary Close button for closing actions. Used in Modal, Drawer, Alert and Toast. * */ export declare class SgdsCloseButton extends SgdsElement { static styles: import("lit").CSSResult[]; /** Specifies a large or small button */ size: "sm" | "md"; /** The tone of the close button */ tone: "default" | "fixed-dark" | "fixed-light"; /** Disables the close button, preventing click events */ disabled: boolean; private _handleClick; private _clickHandler; firstUpdated(changedProperties: PropertyValueMap): void; render(): import("lit").TemplateResult<1>; } export default SgdsCloseButton;