import { IconProps } from "../Icon/type.mjs";
import { Ref } from "react";
import { RefSelectProps, SelectProps } from "antd";

//#region src/Select/type.d.ts
interface SelectProps$1 extends Omit<SelectProps, 'suffixIcon'> {
  ref?: Ref<RefSelectProps>;
  shadow?: boolean;
  suffixIcon?: IconProps['icon'];
  suffixIconProps?: Omit<IconProps, 'icon'>;
}
//#endregion
export { SelectProps$1 as SelectProps };
//# sourceMappingURL=type.d.mts.map