// Generated by dts-bundle-generator v9.5.1

import { TailwindProps } from '@ehubbell/html';

export type HtmlProps = TailwindProps & {
	id?: string;
	ref?: any;
	name?: string;
	size?: string;
	html?: any;
	tabIndex?: any;
	onClick?: (v?: any) => any;
	onMouseEnter?: (v?: any) => any;
	onMouseLeave?: (v?: any) => any;
	tailwind?: TailwindProps & any;
	className?: string;
	style?: any;
	children?: any;
};
export type ImgProps = HtmlProps & {
	alt?: string;
	src: string;
	fetchPriority?: "high" | "low" | "auto";
};
export type TagsProps = HtmlProps;
export type TagProps = HtmlProps;
export type TagImgProps = ImgProps;
export type TagBodyProps = HtmlProps;
export type TagActionsProps = HtmlProps;
export declare const Tags: ({ name, tailwind, className, children, ...props }: TagsProps) => import("react/jsx-runtime").JSX.Element;
export declare const Tag: ({ name, size, tailwind, className, children, ...props }: TagProps) => import("react/jsx-runtime").JSX.Element;
export declare const TagImg: ({ name, size, src, alt, tailwind, className, ...props }: TagImgProps) => import("react/jsx-runtime").JSX.Element;
export declare const TagBody: ({ name, tailwind, className, children, ...props }: TagBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const TagActions: ({ name, tailwind, className, children, ...props }: TagActionsProps) => import("react/jsx-runtime").JSX.Element;

export {};
