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