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