/** * 筛选 */ import { FC } from "react"; import { SelectProps } from "@atomintl/aui-next"; import { SelectButton } from "./SelectButton"; interface OptionProps { label: string; value: any; } interface Props extends SelectProps { value: any; list: OptionProps[]; classes?: { customizeSelect?: string; }; disable?: boolean; } export declare const PlaceSelect: FC; export { SelectButton };