import * as modifiers from '../modifiers'; import * as transformations from '../transformations/index'; import { Scad } from '../types/Scad'; import { ScadSerializeMethod } from './Serializable'; export interface ScadMethods extends ScadSerializeMethod { background: typeof modifiers.background; debug: typeof modifiers.debug; disable: typeof modifiers.disable; root: typeof modifiers.root; color: typeof transformations.color; delta_offset: typeof transformations.delta_offset; linear_extrude: typeof transformations.linear_extrude; mirror: typeof transformations.mirror; mirror_x: typeof transformations.mirror_x; mirror_y: typeof transformations.mirror_y; mirror_z: typeof transformations.mirror_z; projection: typeof transformations.projection; radius_offset: typeof transformations.radius_offset; resize: typeof transformations.resize; rotate: typeof transformations.rotate; rotate_extrude: typeof transformations.rotate_extrude; rotate_x: typeof transformations.rotate_x; rotate_y: typeof transformations.rotate_y; rotate_z: typeof transformations.rotate_z; scale: typeof transformations.scale; scale_x: typeof transformations.scale_x; scale_y: typeof transformations.scale_y; scale_z: typeof transformations.scale_z; translate: typeof transformations.translate; translate_x: typeof transformations.translate_x; translate_y: typeof transformations.translate_y; translate_z: typeof transformations.translate_z; } export declare type Chainable = Scad & ScadMethods; export declare const isScadChainable: (x: any) => x is ScadMethods; export declare function chain(x: T): T & ScadMethods;