import { EDataInputType, TOnSelectMaterial } from '../../src/features/DataAdapter/utils/types'; import { AttributeValue, IAttributeAsset } from '../../src/features/swatches/model/types'; export interface ISwatchesModuleProps { isOpen: boolean; uiDataType: EDataInputType; assetId?: string; data?: IAttributeAsset[] | any[]; configurationData?: any[]; onToggleSidebar: () => void; onSendData: (data: unknown) => void; onSelectMaterial?: TOnSelectMaterial; } export declare const SwatchModule: ({ isOpen, uiDataType, data, assetId, configurationData, onToggleSidebar, onSendData, onSelectMaterial, }: ISwatchesModuleProps) => import("react/jsx-runtime").JSX.Element;