import React from "react"; import { Select, SelectProps } from "antd"; import { PreviewTextProps } from "./index"; import "./styles.less"; interface CompoundedComponentSelect extends React.ForwardRefExoticComponent> { Option: typeof Select.Option; OptGroup: typeof Select.OptGroup; } declare const PreviewSelect: CompoundedComponentSelect; export default PreviewSelect;