import { LogicalLineNode } from './public-api';
export interface ILogicalTextJustifier {
    justify: (line: LogicalLineNode) => void;
}
export declare class LogicalTextJustifier implements ILogicalTextJustifier {
    static instance: LogicalTextJustifier;
    private constructor();
    private getJustifyTargetChars;
    justify(line: LogicalLineNode): void;
}
