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