declare const getRowActionAttributes: (row: any) => { onClick: () => any; onKeyPress: (event: any) => void; tabIndex: string; href?: undefined; } | { href: string; onClick?: undefined; onKeyPress?: undefined; tabIndex?: undefined; } | { onClick?: undefined; onKeyPress?: undefined; tabIndex?: undefined; href?: undefined; }; export default getRowActionAttributes;