import PDFOperator from '../../../pdf-operators/PDFOperator';
/**
 * Set the line width in the graphics state
 */
declare class w extends PDFOperator {
    static of: (lineWidth: number) => w;
    lineWidth: number;
    constructor(lineWidth: number);
    toString: () => string;
    bytesSize: () => number;
    copyBytesInto: (buffer: Uint8Array) => Uint8Array;
}
export default w;
