import type { Uri } from '../util/IUri.js';
export interface Document {
    uri: UriString;
    text?: string;
    languageId?: string;
    locale?: string;
}
export type UriString = string;
export type UriOrString = UriString | Uri;
export interface DocumentWithText extends Document {
    text: string;
}
//# sourceMappingURL=Document.d.ts.map