import * as React from 'react'; export interface ISelectableProps { checked?: boolean; classNames?: any; type?: string; } declare class Selectable extends React.Component { static defaultProps: { type: string; }; render(): JSX.Element; } export default Selectable;