1 | import { Color } from '../../color';
|
2 | import { View } from '../core/view';
|
3 | import { Property } from '../core/properties';
|
4 | import { Switch as SwitchDefinition } from '.';
|
5 | export declare class SwitchBase extends View implements SwitchDefinition {
|
6 | static checkedChangeEvent: string;
|
7 | checked: boolean;
|
8 | offBackgroundColor: Color;
|
9 | _onCheckedPropertyChanged(newValue: boolean): void;
|
10 | }
|
11 | export declare const checkedProperty: Property<SwitchBase, boolean>;
|
12 | export declare const offBackgroundColorProperty: Property<SwitchBase, Color>;
|