import { FC } from "react";
import { CommonProps, SelectOption } from "../../types";
export interface OptionListProps extends CommonProps<HTMLUListElement> {
    options: SelectOption[];
    value: string[];
    onChange: (val: string[]) => void;
    multiple?: boolean;
}
declare const OptionList: FC<OptionListProps>;
export default OptionList;
