import { LintConfig } from '../types/Config'; import { GetFormattedString } from '../types/Formattable'; import { NodeType } from './ArgumentNode'; import { NbtNodeType } from './NbtNode'; import { NbtNumberNode } from './NbtNumberNode'; export declare class NbtDoubleNode extends NbtNumberNode { readonly [NodeType] = "NbtDouble"; readonly [NbtNodeType] = "Double"; protected readonly suffixConfigKey = "nbtDoubleSuffix"; [GetFormattedString](lint: LintConfig): string; } export declare module NbtDoubleNode { }