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