import type { Chainable } from '../util/Chainable'; import { ITransformation } from './internals'; export declare type Projection = ITransformation<'projection', { cut: boolean; }>; export declare function projection(this: Chainable, cut?: boolean): Projection & import("../util/Chainable").ScadMethods;