// 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 TableProps = HtmlProps;
export type TableHeaderProps = HtmlProps;
export type TableHeaderRowProps = HtmlProps;
export type TableHeadProps = HtmlProps & {
	alt?: string;
	value?: string;
	params?: any;
	setParams?: (v: any) => any;
};
export type TableBodyProps = HtmlProps;
export type TableRowProps = HtmlProps;
export type TableDataProps = HtmlProps & {
	title?: boolean;
	value?: string | number;
};
export declare const Table: ({ name, tailwind, className, children, ...props }: TableProps) => import("react/jsx-runtime").JSX.Element;
export declare const TableHeader: ({ name, tailwind, className, children, ...props }: TableHeaderProps) => import("react/jsx-runtime").JSX.Element;
export declare const TableHeaderRow: ({ name, tailwind, className, children, ...props }: TableHeaderRowProps) => import("react/jsx-runtime").JSX.Element;
export declare const TableHead: ({ name, alt, value, params, setParams, tailwind, className, children, ...props }: TableHeadProps) => import("react/jsx-runtime").JSX.Element;
export declare const TableBody: ({ name, tailwind, className, children, ...props }: TableBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const TableRow: ({ name, tailwind, className, children, ...props }: TableRowProps) => import("react/jsx-runtime").JSX.Element;
export declare const TableData: ({ name, title, value, tailwind, className, children, ...props }: TableDataProps) => import("react/jsx-runtime").JSX.Element;

export {};
