import { Cre8Element } from '../cre8-element'; import '../button/button'; /** * @slot - The component content , this will consist of the dropdown when the user clicks the caret */ export declare class Cre8SplitButton extends Cre8Element { static styles: import("lit").CSSResult[]; dropdownOpen: boolean; disabled?: boolean; /** * Size variant * * * */ size?: 'sm' | 'lg'; /** * Display text on the button */ buttonText: string; render(): import("lit-html").TemplateResult<1>; private _textClick; private _dropdownClick; } declare global { interface HTMLElementTagNameMap { 'cre8-split-button': Cre8SplitButton; } } export default Cre8SplitButton; //# sourceMappingURL=split-button.d.ts.map