import type { OneOf } from './types'; type Props = OneOf<{ marketKey: string; outcomeId: string | number; }>; declare const getMarketDescription: (props: Props) => string; export default getMarketDescription;