import { AnchorHTMLAttributes, type HTMLAttributes } from 'react';
export * from './customStylish';
export * from './customToken';
export type DivProps = HTMLAttributes<HTMLDivElement>;
export type VideoProps = HTMLAttributes<HTMLVideoElement>;
export type SvgProps = HTMLAttributes<SVGSVGElement>;
export type ImgProps = HTMLAttributes<HTMLImageElement>;
export type AProps = AnchorHTMLAttributes<HTMLAnchorElement>;
export type InputProps = HTMLAttributes<HTMLInputElement>;
export type TextAreaProps = HTMLAttributes<HTMLTextAreaElement>;
export type SpanProps = HTMLAttributes<HTMLSpanElement>;
