export declare class SassTextLine { private text; lineNumber: number; isEmptyOrWhitespace: boolean; constructor(text: string, lineNumber: number); /**Sets the text of the line. */ set(text: string): void; /**Gets the text of the line. */ get(): string; }