import PDFOperator from '../../../pdf-operators/PDFOperator';
/**
 * Set the line dash pattern in the graphics state
 */
declare class d extends PDFOperator {
    static of: (dashArray: number[], dashPhase: number) => d;
    dashArray: [number, number];
    dashPhase: number;
    constructor(dashArray: number[], dashPhase: number);
    toString: () => string;
    bytesSize: () => number;
    copyBytesInto: (buffer: Uint8Array) => Uint8Array;
}
export default d;
