type WallOptions = {
    thikness: number;
};
type UseWallsOptions = {
    left?: Partial<WallOptions> | boolean;
    right?: Partial<WallOptions> | boolean;
    top?: Partial<WallOptions> | boolean;
    bottom?: Partial<WallOptions> | boolean;
};
export declare const useWalls: ({ left, right, top, bottom }?: UseWallsOptions) => void;
export {};
