import PDFOperator from '../../../pdf-operators/PDFOperator';
/**
 * Set the horizontal scaling, Th, to (scale ÷ 100). scale shall be a number
 * specifying the percentage of the normal width. Initial value: 100 (normal width).
 */
declare class Tz extends PDFOperator {
    static of: (scale: number) => Tz;
    scale: number;
    constructor(scale: number);
    toString: () => string;
    bytesSize: () => number;
    copyBytesInto: (buffer: Uint8Array) => Uint8Array;
}
export default Tz;
