import React = require("react");

interface ListBoxProps {
    id?: string,
    value?: any,
    options?: Array<any>,
    optionLabel?: string,
    itemTemplate?(): void,
    style?: object,
    listStyle?: object,
    className?: string,
    key?: string,
    multiple?: boolean,
    metaKeySelection?: boolean,
    filter?: boolean,
    onChange?(e: {originalEvent: Event, value: any}): void;
}

export class ListBox extends React.Component<ListBoxProps,any> {}
