export interface OwnProps { default: boolean; onHandleClick: (active: boolean) => void | any; disabled?: boolean; } export interface State { isActive: boolean; } export declare enum TOGGLE_STATUS { ENABLED = "ENABLED", DISABLED = "DISABLED" } export declare type Props = OwnProps;