materialize-angular
Version:
Material UI Angular library
25 lines (24 loc) • 759 B
TypeScript
/**
* @license
* Copyright Workylab. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://raw.githubusercontent.com/workylab/materialize-angular/master/LICENSE
*/
import { EventEmitter } from '@angular/core';
import { ButtonToggleModel } from './button-toggle.model';
export declare class ButtonToggleComponent implements ButtonToggleModel {
static readonly defaultProps: ButtonToggleModel;
onClickEmitter: EventEmitter<string>;
className: string;
disabled: boolean;
name: string;
value: string;
prefix: string;
isActive: boolean;
isFocused: boolean;
constructor();
onClick(): void;
onBlur(): void;
onFocus(): void;
}