import { ActivityModelTypes, ChannelDetailModel } from "../timelineViewTypes"; /** * Returns the testId for a given Icon. This testId is populated in the title of the Icon. * @param {ChannelDetailModel} activity - The Activity whose type is a ChannelDetailModel. This is used to determine the testId. * @returns {string} The testId for an Icon. * @example * const expectedChannelTestId = getActivityIconTestId(activity); */ declare const getActivityIconTestId: (activity: ChannelDetailModel) => string; /** * Returns Icon related to an Activity or ActivityView * @param {ActivityModelTypes} activity - An Activity or ActivityView * @returns {JSX.Element} An Icon react component for the given channel. * @example * * {getActivityIcon(activity)} * */ declare const getActivityIcon: (activity: ActivityModelTypes) => JSX.Element; export { getActivityIcon, getActivityIconTestId };