import { FunctionComponent, HTMLProps } from 'react'; export interface TransferListProps extends Omit, 'onChange'> { /** The ids of the lists and the respective ids of each item in each list. */ ids: { [listId: string]: string[]; }; /** Called when a request to change the items in a list is made. */ onChange?: (listId: string, ids: string[]) => void; } /** * The `TransferList` component is a container for two or more lists of items that can be moved between lists. */ export declare const TransferList: FunctionComponent;