import { DataAttributes } from ".."; /** Base interface for component props */ export type BaseElementProps = { /** Additional class names */ className?: string; /** Title */ title?: string; /** Extra data-* attributes */ data?: DataAttributes; }; //# sourceMappingURL=baseElementProps.d.ts.map