import { SupportedChainId, SupportedDex } from '../types';
export default function getGraphUrls(chainId: SupportedChainId, dex: SupportedDex, isGraphRequired?: boolean): {
    url: string;
    publishedUrl: string | undefined;
};
