import * as React from 'react'; export interface IRowActionsProps { children: any; } export interface IRowActionProps { onClick: () => void; children?: any; } export declare function RowActions(props: IRowActionsProps): React.JSX.Element; export declare function RowAction(props: IRowActionProps): React.JSX.Element;