import type { IWall } from "../types"; type CallbackFunc = (wall: IWall) => void; export declare const onAddWall: (callback: CallbackFunc) => () => void; export {};