import { FC } from "react"; import { CommonProps } from "../../types"; export interface SelectOption { key: string; content: string; } export interface ScrollSelectorProps extends CommonProps { name?: string; options: SelectOption[]; value: string | string[]; onChange: (val: string | string[]) => void; multiple?: boolean; } declare const ScrollSelector: FC; export default ScrollSelector;