export declare enum Verbosity { SHORT = 0, MEDIUM = 1, LONG = 2 } export interface IFormatterChangeEvent { scheme: string; } export interface ResourceLabelFormatter { scheme: string; authority?: string; priority?: boolean; formatting: ResourceLabelFormatting; } export interface ResourceLabelFormatting { label: string; separator: "/" | "\\" | ""; tildify?: boolean; normalizeDriveLetter?: boolean; workspaceSuffix?: string; workspaceTooltip?: string; authorityPrefix?: string; stripPathStartingSeparator?: boolean; }