import React from "react"; export interface IconPickerProps { icons: Record; onIconSelect: (iconName: string) => void; selectedIcon: string; } export declare const IconPicker: React.FC; export interface ColorPickerProps { colors: string[]; onColorSelect: (color: string) => void; selectedColor: string; } export declare const ColorPicker: React.FC; //# sourceMappingURL=Picker.d.ts.map