import * as React from 'react';

interface ListBoxItemProps {
    option?: any;
    selected?: boolean;
    onClick?(e: {originalEvent: Event, option: any}): void;
    onTouchEnd?(e: {originalEvent: Event, option: any}): void;
    template?(item: any): JSX.Element | undefined;
}

export class ListBoxItem extends React.Component<ListBoxItemProps,any> {}