import { Stack } from 'soby';
export declare const SYMBOL_STACK: unique symbol;
export interface StackTaggedFunction extends Function {
    [SYMBOL_STACK]?: Stack;
}
declare const wrapElement: <T extends Function>(element: T) => T & StackTaggedFunction;
export default wrapElement;
//# sourceMappingURL=wrap_element.d.ts.map