import * as React from 'react';
export type Props = {
    readonly isSelected?: boolean;
    readonly label: string;
};
declare function Item({ isSelected, label }: Props): React.JSX.Element;
export default Item;
