import { ComponentPropsWithoutRef, ComponentPropsWithRef } from 'react'; export type DataAttributes = Record<`data-${string}`, string>; export type PassThroughProps = ComponentPropsWithoutRef & DataAttributes; export type PassThroughPropsWithRef = ComponentPropsWithRef & DataAttributes;