import { SupportedDex, SupportedChainId } from '../types';
type PartialRecord<K extends keyof any, T> = {
    [P in K]?: T;
};
type GraphQL = {
    url: string;
    publishedUrl: string;
};
type dexGraph = PartialRecord<SupportedDex, GraphQL>;
export declare const graphUrls: Record<SupportedChainId, dexGraph>;
export {};
