import { Bounds } from "@sheetxl/common";
import { IBullet } from "./Bullet";
import { ITextRun } from "./TextRun";
/**
 * This interface is a 'helper' interface that is only available on Frames that have be layed out/placed
 */
export interface ITextLine {
    readonly bullet: IBullet;
    readonly runs: ITextRun[];
    readonly bounds: Bounds;
    readonly baseline: number;
}
export declare class DefaultTextLine implements ITextLine {
    _private: any;
    constructor(bounds: Bounds, baseline: number, runs: ITextRun[]);
    get bounds(): any;
    get baseline(): any;
    get runs(): any;
    get bullet(): any;
}
//# sourceMappingURL=TextLine.d.ts.map