declare const StringArrayMapEditor: ({ slot, }: {
    slot: {
        name: string;
        value: Map<string, string[]>;
        remove: (key: string) => void;
        add: (key: string, val: string[]) => void;
        description: string;
        setAtKeyIndex: (key: string, idx: number, val: string) => void;
        removeAtKeyIndex: (key: string, idx: number) => void;
        addToKey: (key: string, val: string) => void;
    };
}) => import("react/jsx-runtime").JSX.Element;
export default StringArrayMapEditor;
