import { BaseGlNodeType } from '../../_Base';
import { LineType } from './LineType';
import { BaseNodeType } from '../../../_Base';
export declare class CodeFormatter {
    static nodeComment(node: BaseGlNodeType, lineType: LineType): string;
    static lineWrap(node: BaseGlNodeType, line: string, lineType: LineType): string;
    static post_line_separator(lineType: LineType): "" | "\t";
    static nodeDistanceToMaterial(node: BaseNodeType): number;
}
