/** @jsx jsx */ import { FC } from 'react'; import { PopoverProps } from '../Popover'; export interface MultiselectItem { /** * item label */ label: string; /** * selected state */ selected: boolean; } export interface MultiselectOwnProps { /** * array of items to select from */ items: MultiselectItem[]; /** * function called when the selected state of an item changes */ onChange: (item: MultiselectItem) => void; } export declare type MultiselectProps = MultiselectOwnProps & Omit; /** * Popover multiselect displaying checkboxes to select/unselect. */ export declare const Multiselect: FC;