/* * Copyright (C) 2018 by Marijn Haverbeke and others * Copyright (C) 2021-2024 The Refinery Authors * * SPDX-License-Identifier: MIT */ declare module '*.grammar' { import type { LRParser } from '@lezer/lr'; export const parser: LRParser; } declare module '*.terms' { export const QualifiedNameSeparator: number; }