interface LegendLayoutProps { title: string; children: React.ReactNode; height?: number; width?: number; showLayerLegend?: boolean; toggleLayerLegendVisibility?: (showLegend: boolean) => void; } export declare const LegendLayout: React.FC; export {};