// Generated from dist/custom-elements.json. Do not edit directly. import type { HTMLAttributes } from 'react'; import type { RefineElementMap } from './elements'; export type RefineReactElementProps = HTMLAttributes & Record; export type RefineReactIntrinsicElements = { [Tag in keyof RefineElementMap]: RefineReactElementProps; }; declare module 'react' { namespace JSX { interface IntrinsicElements extends RefineReactIntrinsicElements {} } } export {};