import { Component } from 'react';
import { PropsWithChildren } from 'react';

export declare class Selectable<T> extends Component<SelectableProps<T>> {
    constructor(props: SelectableProps<T>);
}

export declare interface SelectableProps<T> extends PropsWithChildren {
    object: T;
    caption?: string;
}

export { }
