import { Chainable } from './util/Chainable'; interface IModified { type: Name; children: Chainable; } export declare type Background = IModified<'%'>; export declare const background: (this: Chainable) => Background & import("./util/Chainable").ScadMethods; export declare type Debug = IModified<'#'>; export declare const debug: (this: Chainable) => Debug & import("./util/Chainable").ScadMethods; export declare type Root = IModified<'!'>; export declare const root: (this: Chainable) => Root & import("./util/Chainable").ScadMethods; export declare type Disable = IModified<'*'>; export declare const disable: (this: Chainable) => Disable & import("./util/Chainable").ScadMethods; export declare type Modifier = Disable | Root | Debug | Background; export {};