import React from 'react'; interface Props { isRight?: boolean; isSingle?: boolean; className?: string; } declare const defaultProps: { isRight: boolean; className: string; }; declare type NativeAttrs = Omit, keyof Props>; export declare type ButtonIconProps = Props & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType & Pick>; export default _default;