import BlockVolume from "./BlockVolume";
import Block from "./Block";
import BlockVolumePlane from "./BlockVolumePlane";
export default class BlockVolumeLine {
    private _cube;
    private _plane;
    private _y;
    get cube(): BlockVolume;
    get y(): number;
    get x(): number;
    get plane(): BlockVolumePlane;
    blocks: Block[];
    constructor(cube: BlockVolume, plane: BlockVolumePlane, y: number);
    z(z: number): Block;
}
