"use client"; import { BACKGROUND_LAYER_OPTIONS, BackgroundLayerId, BackgroundLayerVisibility, } from "@/lib/backgroundLayers"; type Props = { visibility: BackgroundLayerVisibility; onToggleLayer: (id: BackgroundLayerId) => void; onShowAll: () => void; onHideAll: () => void; }; export default function BackgroundLayersPanel({ visibility, onToggleLayer, onShowAll, onHideAll, }: Props) { return ( ); }