export default function getOnClick(item: any, props: any): {
    onClick?: undefined;
} | {
    onClick(event: any, data: any): void;
};
