import { IHasRawProps } from '@epam/uui-core'; import React from 'react'; import { IconButtonProps } from '../buttons'; type ControlIconProps = Pick & IHasRawProps | React.ButtonHTMLAttributes> & { /** Called when keyDown event is fired on component */ onKeyDown?: (e: React.KeyboardEvent) => void; }; export declare function ControlIcon(props: ControlIconProps): React.ReactNode; export {}; //# sourceMappingURL=ControlIcon.d.ts.map