import HtmlNode from '../Extension/HtmlNode';
interface ButtonAltProps {
readonly title: string;
readonly id?: string;
disabled?: boolean;
loading?: boolean;
readonly onClick?: (e: Event) => void;
}
declare class ButtonAlt extends HtmlNode {
private readonly props;
constructor(element: HTMLDivElement | null, props: ButtonAltProps);
isDisabled(): boolean | undefined;
disabled(disabled: boolean): void;
loading(loading: boolean): void;
render(): void;
}
export default ButtonAlt;