/// declare type colorT = { id: string; name: string; color: string; }; declare type ColorSelectionSectionT = { label: string; values: colorT[]; id: string; children: any; [key: string]: unknown; }; export declare const ColorSelectionSection: ({ ...props }: ColorSelectionSectionT) => JSX.Element; export {};