import PDFOperator from '../../../pdf-operators/PDFOperator';
/**
 * Set the line cap style in the graphics state
 */
export declare class J extends PDFOperator {
    static of: (lineCap: number) => J;
    lineCap: number;
    constructor(lineCap: number);
    toString: () => string;
    bytesSize: () => number;
    copyBytesInto: (buffer: Uint8Array) => Uint8Array;
}
/**
 * Set the line join style in the graphics state
 */
export declare class j extends PDFOperator {
    static of: (lineJoin: number) => j;
    lineJoin: number;
    constructor(lineJoin: number);
    toString: () => string;
    bytesSize: () => number;
    copyBytesInto: (buffer: Uint8Array) => Uint8Array;
}
