// 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 SlideProps = HtmlProps & {
	open: boolean;
	onClose: () => any;
	placement: string;
};
export type SlideWrapperProps = HtmlProps & {
	open: boolean;
	onClose: () => any;
};
export type SlideBackdropProps = HtmlProps & {
	open: boolean;
	onClose: () => any;
};
export type SlideHeaderProps = HtmlProps & {
	onClose: () => any;
};
export type SlideTitleProps = HtmlProps;
export type SlideBodyProps = HtmlProps;
export type SlideFooterProps = HtmlProps;
export declare const SlideWrapper: ({ name, open, onClose, tailwind, className, children, ...props }: SlideWrapperProps) => import("react/jsx-runtime").JSX.Element;
export declare const SlideBackdrop: ({ name, open, onClose, tailwind, ...props }: SlideBackdropProps) => import("react/jsx-runtime").JSX.Element;
export declare const Slide: ({ name, open, placement, onClose, tailwind, className, children, ...props }: SlideProps) => any;
export declare const SlideHeader: ({ name, onClose, tailwind, className, children, ...props }: SlideHeaderProps) => import("react/jsx-runtime").JSX.Element;
export declare const SlideTitle: ({ name, tailwind, className, children, ...props }: SlideTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const SlideBody: ({ name, tailwind, className, children, ...props }: SlideBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const SlideFooter: ({ name, tailwind, className, children, ...props }: SlideFooterProps) => import("react/jsx-runtime").JSX.Element;

export {};
