export declare class ZeaButton { /** * Text/html to be displayed inside the button */ htmlContent: string; /** * Style variant for the button */ variant: string; /** * Whether the button should be disabled (true) or not (false) */ disabled: boolean; /** * Whether the button should be disabled (true) or not (false) */ color: boolean; /** * Whether the button should be disabled (true) or not (false) */ density: string; /** * Main render function * @return {JSX} the generated html */ render(): any; }