import { ElementType, PropsWithChildren } from 'react'; import { BaseProps } from '../types.js'; import '@emotion/react'; type OptionListProps = BaseProps & PropsWithChildren<{ popOver?: boolean; value?: string; setValue?: (values: string) => void; values?: string[]; setValues?: (values: string[]) => void; }>; export { OptionListProps };