import React from 'react'; interface Props { width?: string; } declare const defaultProps: { width: string; }; export type SelectIconProps = Props & typeof defaultProps; declare const _default: React.ComponentType & Omit>; export default _default;