// 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 BtnProps = HtmlProps & {
	type?: "button" | "submit" | "reset";
	alt?: string;
	size?: string;
	active?: boolean;
	prevIcon?: any;
	prevImg?: any;
	icon?: any;
	img?: any;
	nextIcon?: any;
	nextImg?: any;
	span?: any;
	disabled?: boolean;
	taskRunning?: boolean;
};
export type LinkProps = HtmlProps & {
	alt?: string;
	active?: boolean;
	size?: string;
	prevIcon?: any;
	prevImg?: any;
	icon?: any;
	img?: any;
	nextIcon?: any;
	nextImg?: any;
	span?: any;
	href?: string;
	disabled?: boolean;
	target?: "_self" | "_blank";
	taskRunning?: boolean;
};
export type MenuProps = HtmlProps & {
	open: boolean;
	onClose: () => any;
};
export type MenuWrapperProps = HtmlProps & {
	open: boolean;
	onClose: () => any;
};
export type MenuBackdropProps = HtmlProps & {
	open: boolean;
	onClose: () => any;
};
export type MenuMenuProps = HtmlProps & {
	open: boolean;
	onClose: () => any;
};
export type MenuTitleProps = HtmlProps;
export type MenuSubtitleProps = HtmlProps;
export type MenuListProps = HtmlProps;
export type MenuItemProps = HtmlProps;
export type MenuBtnProps = BtnProps;
export type MenuLinkProps = LinkProps;
export declare const Menu: ({ name, open, onClose, tailwind, className, children, ...props }: MenuProps) => import("react/jsx-runtime").JSX.Element;
export declare const MenuWrapper: ({ name, open, onClose, tailwind, className, children, ...props }: MenuWrapperProps) => import("react/jsx-runtime").JSX.Element;
export declare const MenuBackdrop: ({ name, open, onClose, tailwind, className, ...props }: MenuBackdropProps) => import("react/jsx-runtime").JSX.Element;
export declare const MenuMenu: ({ name, open, onClose, tailwind, className, children, ...props }: MenuMenuProps) => import("react/jsx-runtime").JSX.Element;
export declare const MenuBlock: ({ name, tailwind, className, children, ...props }: MenuListProps) => import("react/jsx-runtime").JSX.Element;
export declare const MenuTitle: ({ name, tailwind, className, children, ...props }: MenuTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const MenuSubtitle: ({ name, tailwind, className, children, ...props }: MenuSubtitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const MenuList: ({ name, tailwind, className, children, ...props }: MenuListProps) => import("react/jsx-runtime").JSX.Element;
export declare const MenuItem: ({ name, tailwind, className, children, ...props }: MenuItemProps) => import("react/jsx-runtime").JSX.Element;
export declare const MenuBtn: ({ name, active, onClick, taskRunning, tailwind, className, children, ...props }: MenuBtnProps) => import("react/jsx-runtime").JSX.Element;
export declare const MenuLink: ({ name, href, tailwind, className, children, ...props }: MenuLinkProps) => import("react/jsx-runtime").JSX.Element;

export {};
