import { type ReactNode } from "react"; export interface ILegendDialogProps { name: string; isOpen: boolean; alignTo: string; onCloseDialog: () => void; children?: ReactNode; id: string; } export declare function LegendDialog({ name, children, isOpen, alignTo, onCloseDialog, id }: ILegendDialogProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=LegendDialog.d.ts.map