import { ScadNumber } from '../../types/ScadNumber'; import { ScadRoundingVariables } from '../../types/ScadRoundingVariables'; import { Chainable } from '../../util/Chainable'; import { ITransformation } from '../internals'; declare type Params = { convexity?: number; } & ScadRoundingVariables; export declare type RotateExtrude = ITransformation<'rotate_extrude', { angle: ScadNumber; } & Params>; export declare function rotate_extrude(this: Chainable, angle?: ScadNumber, params?: Params): RotateExtrude & import("../../util/Chainable").ScadMethods; export declare namespace rotate_extrude { var defaultAngle: ScadNumber; var defaultParams: Params; } export {};