import { EdgeInsets, TextStyle } from "@meursyphus/flitter"; export default function Legend({ legendStates, style, margin, gap, }: LegendProps): any; type LegendProps = { legendStates: { color: string; label: string; visible: boolean; }[]; style: TextStyle; margin?: EdgeInsets; gap?: number; }; export {};