import React from 'react'; declare type ChildType = React.ReactElement>; export interface ActionIconsProps extends React.HTMLProps { className?: string; children?: ChildType | ChildType[]; } declare const ActionIcons: React.FunctionComponent; export default ActionIcons;