import { SassTextLine } from '../sassTextLine'; import { FormattingState } from '../state'; export declare function FormatProperty(line: SassTextLine, STATE: FormattingState): string; export declare function canReplaceSpacesOrTabs(STATE: FormattingState, text: string): boolean; export declare function HandleSetPropertySpace(STATE: FormattingState, text: string, setSpace: boolean): { setSpace: boolean; text: string; };