import type { LocationWithLineColumn } from 'core-types';
export interface GqlLocation {
    line: number;
    column: number;
}
export declare function gqlLocationsToCoreTypesLocation(source: string, loc: ReadonlyArray<GqlLocation>): LocationWithLineColumn;
