export declare class ToggleComponent { /** * This function will be call when the user changed the toggle, * the toggle will emit the entire html event to be handle * in the parent component. * @internal */ changeState: Function; isDisabled: boolean; constructor(); onChange: (event: Event) => void; }