import React from 'react'; import { ToggleableComponentProps } from './Toggleable'; declare type OwnProps = Pick; declare type InjectedProps = { onClick(event: React.MouseEvent): void; }; export declare const withTogglleable: (UnwrappedComponent: React.ComponentType) => React.ComponentType & OwnProps>; export { InjectedProps as WithToggleInjectedProps };