import { HTMLAttributes } from 'react';
import { VariantProps } from 'tailwind-variants';
import { styles } from './hint.styles.js';
import type { ResponsiveVariants } from '../../types/responsive-variants.types.js';
type Variant = VariantProps;
export type HintProps = {
/**
* spacing
*/
spacing?: ResponsiveVariants;
/**
* Tag to render
*/
tag?: keyof JSX.IntrinsicElements;
} & HTMLAttributes;
export {};