import { FC } from 'react'; import { SelectProps } from './select'; import { OptionProps } from './option'; declare type transSlectProps = FC & { Option: FC; }; declare const transSelect: transSlectProps; export default transSelect;