import { ComponentInterface, EventEmitter } from '../../stencil-public-runtime';
export declare class Switch implements ComponentInterface {
  type: string;
  checked: boolean;
  color: string;
  name: string;
  disabled: boolean;
  nativeProps: {};
  isChecked: boolean;
  isWillLoadCalled: boolean;
  el: HTMLElement;
  function(newVal: boolean, oldVal: boolean): void;
  onChange: EventEmitter;
  componentWillLoad(): void;
  componentDidLoad(): void;
  switchChange: (e: any) => void;
  render(): any;
}
