import React from 'react'; export interface Props { id: string; selectedItems: string[]; onChange(value: string[]): void; children?: React.ReactNode; allowMultiple?: boolean; title?: string; titleHidden?: boolean; controlHidden?: boolean; } export declare function OptionList({ id, selectedItems, onChange, title, titleHidden, controlHidden, allowMultiple, children, }: Props): JSX.Element;