| /** | |
| * -------------------------------------------------------------------------- | |
| * Bootstrap button.ts | |
| * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) | |
| * -------------------------------------------------------------------------- | |
| */ | |
| import BaseComponent from './base-component.js'; | |
| /** | |
| * Class definition | |
| */ | |
| declare class Button extends BaseComponent { | |
| static get NAME(): string; | |
| toggle(): void; | |
| } | |
| export default Button; | |
| //# sourceMappingURL=button.d.ts.map |