export declare class Placeholder { private methodName; source: any; children: Placeholder[]; args: any[]; constructor(methodName?: string, ...args: any[]); replaceWith(parent: any): void; } export declare function placeholder(): any;