import { LintConfig } from '../types/Config'; import { GetFormattedString } from '../types/Formattable'; import { NumberNode } from './NumberNode'; export declare class TimeNode extends NumberNode { value: number; raw: string; unit: 'd' | 's' | 't'; constructor(value: number, raw: string, unit: 'd' | 's' | 't'); [GetFormattedString](lint: LintConfig): string; }