import type { Fn } from "@thi.ng/api";
import type { ReadonlyVec, Vec } from "@thi.ng/vectors";
import type { Attribs, HiccupPathSegment, IHiccupPathSegment, IHiccupShape3 } from "../api.js";
import { APC } from "./apc.js";
export declare class Cubic3 extends APC implements IHiccupShape3<Cubic3>, IHiccupPathSegment {
    readonly type = "cubic3";
    readonly dim = 3;
    constructor(points: Iterable<Vec>, attribs?: Attribs);
    copy(): Cubic3;
    copyTransformed(fn: Fn<ReadonlyVec[], Vec[]>): Cubic3;
    withAttribs(attribs: Attribs): Cubic3;
    toHiccup(): (string | Attribs | (string | Vec<number>)[][] | undefined)[];
    toHiccupPathSegments(): HiccupPathSegment[];
}
//# sourceMappingURL=cubic3.d.ts.map