@playbooks/ui
Version:
An interface library for Playbooks.
803 lines (801 loc) • 56.5 kB
TypeScript
// Generated by dts-bundle-generator v9.5.1
import { TailwindColProps, TailwindContainerProps, TailwindProps } from '@ehubbell/html';
import { IconPrefix } from '@fortawesome/fontawesome-svg-core';
import React$1 from 'react';
import * as RHP from 'react-html-props';
export type BaseProps = TailwindProps & {
ref?: any;
name?: string;
active?: boolean;
dataActive?: boolean;
dataFocus?: boolean;
html?: any;
size?: string;
tailwind?: any;
};
export type HtmlProps = RHP.HtmlProps & BaseProps;
export type InputProps = RHP.InputProps & BaseProps;
export type LabelProps = RHP.LabelProps & BaseProps;
export type SelectProps = RHP.SelectProps & BaseProps;
export type TextAreaProps = RHP.TextAreaProps & BaseProps;
export type AccordionProps = HtmlProps & {
open?: boolean;
};
export type AccordionToggleProps = BtnProps & {
open?: boolean;
variant?: string;
onClick: (v?: any) => any;
};
export type AccordionTitleProps = FontProps & {
icon?: string;
};
export type AccordionBodyProps = HtmlProps & {
open?: boolean;
animate?: boolean;
};
export type AccordionTextProps = HtmlProps & {
size?: string;
};
export type AlertProps = HtmlProps & {
type?: string;
show?: boolean;
};
export type AlertIconProps = HtmlProps & {
type?: string;
icon: string;
};
export type AlertBodyProps = HtmlProps;
export type AlertTitleProps = FontProps;
export type AlertTextProps = HtmlProps;
export type AlertActionsProps = HtmlProps;
export type AnimationProps = HtmlProps;
export type AvatarProps = HtmlProps;
export type AvatarBadgeProps = HtmlProps;
export type AvatarImgProps = HtmlProps & {
alt?: string;
size?: string;
src: string;
};
export type AvatarBodyProps = HtmlProps;
export type AvatarTitleProps = FontProps;
export type AvatarTextProps = HtmlProps;
export type AvatarActionsProps = HtmlProps;
export type BadgeProps = HtmlProps & {
type?: string;
size?: string;
};
export type BannerProps = HtmlProps;
export type BannerIconProps = HtmlProps & {
type?: string;
icon: string;
};
export type BannerBodyProps = HtmlProps;
export type BannerTitleProps = FontProps;
export type BannerTextProps = HtmlProps;
export type BannerActionsProps = HtmlProps & {
onClick: () => any;
onDismiss: () => any;
};
export type BreadcrumbsProps = HtmlProps;
export type BreadcrumbItemProps = HtmlProps & {
icon?: string;
arrow?: boolean;
};
export type BreadcrumbBtnProps = BtnProps & {
active?: boolean;
onClick: () => any;
icon?: string;
};
export type BreadcrumbLinkProps = LinkProps & {
active?: boolean;
href?: string;
icon?: string;
};
export type ButtonGroupProps = HtmlProps;
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 CardProps = HtmlProps;
export type CardHeaderProps = HtmlProps;
export type CardIconProps = HtmlProps & {
type?: string;
icon: string;
};
export type CardImgProps = HtmlProps & {
alt?: string;
size?: string;
src: string;
};
export type CardBodyProps = HtmlProps;
export type CardPretitleProps = HtmlProps;
export type CardTitleProps = HtmlProps;
export type CardSubtitleProps = HtmlProps;
export type CardTextProps = HtmlProps;
export type CardFooterProps = HtmlProps;
export type CardActionsProps = HtmlProps;
export type CheckboxProps = InputProps & {
checked: any;
title?: string;
text?: string;
};
export type CheckboxInputProps = InputProps & {
checked: boolean;
};
export type CommandProps = HtmlProps & {
keys?: string[];
variant?: string;
};
export type DropProps = HtmlProps & {
open: boolean;
onClose: () => any;
};
export type DropToggleProps = BtnProps & {
variant?: string;
open: boolean;
onClick: (v?: any) => any;
};
export type DropMenuProps = HtmlProps & {
open: boolean;
placement?: any;
options?: any;
};
export type DropHeaderProps = HtmlProps;
export type DropTitleProps = HtmlProps;
export type DropSubtitleProps = HtmlProps;
export type DropListProps = HtmlProps;
export type DropItemProps = HtmlProps;
export type DropBtnProps = BtnProps;
export type DropLinkProps = LinkProps;
export type FeedbackProps = HtmlProps;
export type FeedbackHeaderProps = HtmlProps;
export type FeedbackIconProps = HtmlProps & {
type?: string;
icon: string;
};
export type FeedbackBodyProps = HtmlProps;
export type FeedbackTitleProps = HtmlProps;
export type FeedbackTextProps = HtmlProps;
export type FeedbackActionsProps = HtmlProps;
export type FontProps = HtmlProps & {
id?: string;
size?: string | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" | "sm";
};
export type FooterProps = HtmlProps;
export type FooterHeaderProps = HtmlProps;
export type FooterTitleProps = HtmlProps;
export type FooterTextProps = HtmlProps;
export type FooterBodyProps = HtmlProps;
export type FooterListProps = HtmlProps;
export type FooterItemProps = HtmlProps;
export type FooterBtnProps = BtnProps & {
variant?: string;
};
export type FooterLinkProps = LinkProps & {
variant?: string;
};
export type FormProps = HtmlProps & {
onSubmit?: (v: any) => any;
};
export type FormGroupProps = HtmlProps;
export type FormLabelProps = LabelProps & {
htmlFor?: string;
};
export type FormCheckboxProps = FormInputProps & {
checked?: boolean;
};
export type FormFileProps = FormInputProps;
export type FormInputProps = Omit<InputProps, "size"> & {
size?: string;
variant?: string;
};
export type FormInputCurrencyProps = FormInputProps & {
prefix?: string;
};
export type FormInputLocationProps = FormInputProps & {
options?: any;
googleMapsApiKey: string;
onSelect: (e: any) => any;
};
export type FormInputMaskProps = FormInputProps & {
mask: string;
};
export type FormInputPhoneProps = FormInputProps & {
id?: string;
type?: string;
size?: string;
variant?: string;
};
export type FormSelectProps = Omit<SelectProps, "size"> & {
size?: string;
placeholder?: string;
variant?: string;
options?: string[];
};
export type FormTextProps = HtmlProps;
export type FormTextAreaProps = Omit<TextAreaProps, "rows" | "size"> & {
size?: string;
variant?: string;
rows?: any;
};
export type ContainerProps = HtmlProps & TailwindContainerProps;
export type GridProps = HtmlProps & {
cols?: string;
};
export type ColProps = HtmlProps & TailwindColProps;
export type HeadProps = HtmlProps & {
type?: string;
favicon?: string;
logo?: string;
photo?: string;
title?: string;
description?: string;
url?: string;
card?: string;
author?: string;
keywords?: string;
locale?: string;
site?: string;
siteName?: string;
robots?: boolean;
};
export type HeaderProps = HtmlProps;
export type HeaderTitleProps = HtmlProps;
export type HeaderSubtitleProps = HtmlProps;
export type HeaderTextProps = HtmlProps;
export type HeaderActionsProps = HtmlProps;
export type HeroProps = HtmlProps & {
ref?: any;
};
export type HeroBgProps = HtmlProps;
export type HeroImgProps = HtmlProps & {
alt?: string;
size?: string;
src: string;
};
export type HeroIconProps = HtmlProps & {
icon: string;
};
export type HeroBodyProps = HtmlProps;
export type HeroPretitleProps = HtmlProps;
export type HeroTitleProps = HtmlProps;
export type HeroSubtitleProps = HtmlProps;
export type HeroTextProps = HtmlProps;
export type HeroActionsProps = HtmlProps;
export type IFrameProps = HtmlProps & {
title: string;
src: string;
onLoad?: () => void;
};
export type ImgProps = HtmlProps & {
alt?: string;
src: string;
fetchPriority?: "high" | "low" | "auto";
};
export type IconProps = HtmlProps & {
type?: IconPrefix;
icon?: any;
wrapper?: any;
};
export type InputGroupProps = HtmlProps & {
active?: boolean;
};
export type InputAddonProps = HtmlProps & {
icon?: any;
html?: string;
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 LiPropsstGroup = HtmlProps;
export type LiPropsstItem = HtmlProps;
export type PageLoaderProps = HtmlProps & {
title: string;
message: string;
};
export type SectionLoaderProps = HtmlProps & {
title: string;
message: string;
};
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 type ModalWrapperProps = HtmlProps & {
open?: boolean;
onClose?: () => any;
};
export type ModalProps = HtmlProps & {
open?: boolean;
onClose?: () => any;
};
export type ModalBackdropProps = HtmlProps & {
open: boolean;
onClose?: () => any;
};
export type ModalHeaderProps = HtmlProps & {
onClose?: () => any;
};
export type ModalTitleProps = HtmlProps;
export type ModalSubtitleProps = HtmlProps;
export type ModalBodyProps = HtmlProps & {
size?: string;
};
export type ModalFooterProps = HtmlProps;
export type NavPropsbar = HtmlProps & {
ref?: any;
};
export type NavPropsbarBrand = LinkProps & {
src: string;
};
export type NavPropsbarList = HtmlProps;
export type NavProps = HtmlProps;
export type NavHeaderProps = HtmlProps;
export type NavTitleProps = HtmlProps;
export type NavBodyProps = HtmlProps;
export type NavListProps = HtmlProps;
export type NavItemProps = HtmlProps;
export type NavBtnProps = BtnProps & {
variant?: string;
};
export type NavLinkProps = LinkProps & {
variant?: string;
};
export type OtpProps = Omit<InputProps, "size" | "onChange"> & {
id?: string;
type?: string;
size?: string;
variant?: string;
value?: string;
length?: number;
onChange?: any;
};
export type PaginationProps = HtmlProps;
export type PaginationBtnProps = BtnProps & {
page: number;
active?: boolean;
disabled?: boolean;
onClick: (v: number) => any;
};
export type PrefooterProps = HtmlProps;
export type PrefooterBodyProps = HtmlProps;
export type PrefooterPretitleProps = HtmlProps;
export type PrefooterTitleProps = HtmlProps;
export type PrefooterSubtitleProps = HtmlProps;
export type PrefooterTextProps = HtmlProps;
export type PrefooterActionsProps = HtmlProps;
export type ProgressBarProps = HtmlProps;
export type ProgressProps = HtmlProps & {
value: number;
};
export type RadialProgressBar = HtmlProps & {
value: number;
};
export type RadioProps = HtmlProps & {
value: any;
title?: string;
text?: string;
onClick: () => any;
};
export type RadioInputProps = HtmlProps & {
value: boolean;
};
export type RouteProps = HtmlProps & {
title?: string;
seo?: any;
};
export type SectionProps = HtmlProps & {
ref?: any;
};
export type SectionHeaderProps = HtmlProps;
export type SectionPretitleProps = HtmlProps;
export type SectionTitleProps = HtmlProps;
export type SectionSubtitleProps = HtmlProps;
export type SectionTextProps = HtmlProps;
export type SectionActionsProps = HtmlProps;
export type SectionBodyProps = HtmlProps & {
size?: string;
};
export type SectionHrProps = HtmlProps;
export type SectionFooterProps = HtmlProps;
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 type SpinnerProps = HtmlProps;
export type SwitchGroupProps = HtmlProps;
export type SwitchProps = HtmlProps & {
icon?: string;
checked: boolean;
onClick: (v?: any) => any;
};
export type SwitchBackdropProps = HtmlProps & {
checked?: boolean;
};
export type SwitchInnerProps = HtmlProps & {
checked: boolean;
};
export type SwitchToggleProps = HtmlProps & {
icon?: string;
checked: boolean;
};
export type SwitchLabelProps = HtmlProps & {
active?: boolean;
htmlFor?: string;
};
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 = Omit<HtmlProps, "title"> & {
title?: boolean;
value?: string | number;
};
export type TabWrapperProps = HtmlProps;
export type TabSelectProps = HtmlProps & {
tabs?: string[];
activeTab?: string;
onSelect: (v: any) => any;
};
export type TabPropss = HtmlProps & {
tabs?: string[];
activeTab?: string;
onSelect: (v: string) => any;
};
export type TabProps = BtnProps & {
alt?: string;
active?: boolean;
value?: string;
variant?: string;
onSelect: (v: string) => any;
children: any;
};
export type TabPanesProps = HtmlProps;
export type TabPaneProps = HtmlProps & {
active?: boolean;
value?: string;
};
export type TagsProps = HtmlProps;
export type TagProps = HtmlProps;
export type TagImgProps = ImgProps;
export type TagBodyProps = HtmlProps;
export type TagActionsProps = HtmlProps;
export type ToastProps = HtmlProps & {
open?: boolean;
direction?: string;
setOpen?: (v: boolean) => any;
onRemove?: () => any;
};
export type ToastWrapperProps = HtmlProps;
export type ToastHeaderProps = HtmlProps & {
onRemove?: () => any;
};
export type ToastIconProps = HtmlProps & {
icon?: string;
};
export type ToastTitleProps = HtmlProps;
export type ToastBodyProps = HtmlProps;
export type ToastTextProps = HtmlProps;
export type TooltipProps = HtmlProps & {
open?: boolean;
html?: string;
placement?: any;
onBlur?: () => any;
onHover?: (v: boolean) => any;
};
export type TooltipInnerProps = HtmlProps;
export type TooltipArrowProps = HtmlProps;
export declare const Accordion: ({ name, open, tailwind, className, children, ...props }: AccordionProps) => import("react/jsx-runtime").JSX.Element;
export declare const AccordionToggle: ({ id, name, variant, nextIcon, open, onClick, tailwind, className, children, ...props }: AccordionToggleProps) => import("react/jsx-runtime").JSX.Element;
export declare const AccordionTitle: ({ name, size, tailwind, className, children, ...props }: AccordionTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const AccordionBody: ({ name, open, animate, tailwind, className, children, ...props }: AccordionBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const AccordionText: ({ name, tailwind, className, children, ...props }: AccordionTextProps) => import("react/jsx-runtime").JSX.Element;
export declare const Alert: ({ type, name, tailwind, className, children, ...props }: AlertProps) => import("react/jsx-runtime").JSX.Element;
export declare const AlertIcon: ({ type, name, icon, tailwind, className, ...props }: AlertIconProps) => import("react/jsx-runtime").JSX.Element;
export declare const AlertBody: ({ name, tailwind, className, children, ...props }: AlertBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const AlertTitle: ({ name, size, tailwind, className, children, ...props }: AlertTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const AlertText: ({ name, tailwind, className, children, ...props }: AlertTextProps) => import("react/jsx-runtime").JSX.Element;
export declare const AlertActions: ({ name, tailwind, className, children, ...props }: AlertActionsProps) => import("react/jsx-runtime").JSX.Element;
declare const Animation$1: ({ name, tailwind, className, children, ...props }: AnimationProps) => import("react/jsx-runtime").JSX.Element;
export declare const Avatar: ({ name, tailwind, className, children, ...props }: AvatarProps) => import("react/jsx-runtime").JSX.Element;
export declare const AvatarBadge: ({ name, size, tailwind, className, children, ...props }: AvatarBadgeProps) => import("react/jsx-runtime").JSX.Element;
export declare const AvatarImg: ({ name, alt, size, tailwind, className, ...props }: AvatarImgProps) => import("react/jsx-runtime").JSX.Element;
export declare const AvatarBody: ({ name, tailwind, className, children, ...props }: AvatarBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const AvatarTitle: ({ name, size, tailwind, className, children, ...props }: AvatarTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const AvatarText: ({ name, tailwind, className, children, ...props }: AvatarTextProps) => import("react/jsx-runtime").JSX.Element;
export declare const AvatarActions: ({ name, tailwind, className, children, ...props }: AvatarActionsProps) => import("react/jsx-runtime").JSX.Element;
export declare const Badge: ({ name, type, size, tailwind, className, children, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
export declare const DraftBadge: ({ tailwind, className, children, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
export declare const PendingBadge: ({ tailwind, className, children, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
export declare const WarningBadge: ({ tailwind, className, children, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
export declare const SuccessBadge: ({ tailwind, className, children, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
export declare const FinishedBadge: ({ tailwind, className, children, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
export declare const ErrorBadge: ({ tailwind, className, children, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
export declare const DefaultBadge: ({ tailwind, className, children, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
export declare const Banner: ({ name, tailwind, className, children, ...props }: BannerProps) => import("react/jsx-runtime").JSX.Element;
export declare const BannerIcon: ({ name, icon, tailwind, className, ...props }: BannerIconProps) => import("react/jsx-runtime").JSX.Element;
export declare const BannerBody: ({ name, tailwind, className, children, ...props }: BannerBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const BannerTitle: ({ name, size, tailwind, className, children, ...props }: BannerTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const BannerText: ({ name, tailwind, className, children, ...props }: BannerTextProps) => import("react/jsx-runtime").JSX.Element;
export declare const BannerActions: ({ name, tailwind, className, children, ...props }: BannerActionsProps) => import("react/jsx-runtime").JSX.Element;
export declare const Breadcrumbs: ({ name, tailwind, className, children, ...props }: BreadcrumbsProps) => import("react/jsx-runtime").JSX.Element;
export declare const BreadcrumbItem: ({ name, icon, arrow, tailwind, className, children, ...props }: BreadcrumbItemProps) => import("react/jsx-runtime").JSX.Element;
export declare const BreadcrumbBtn: ({ name, size, active, onClick, tailwind, className, children, ...props }: BreadcrumbBtnProps) => import("react/jsx-runtime").JSX.Element;
export declare const BreadcrumbLink: ({ name, size, active, href, tailwind, className, children, ...props }: BreadcrumbLinkProps) => import("react/jsx-runtime").JSX.Element;
export declare const BtnGroup: ({ name, tailwind, className, children, ...props }: ButtonGroupProps) => import("react/jsx-runtime").JSX.Element;
export declare const Btn: (props: any) => import("react/jsx-runtime").JSX.Element;
export declare const PrimaryBtn: ({ name, size, active, tailwind, className, ...props }: BtnProps) => import("react/jsx-runtime").JSX.Element;
export declare const AccentBtn: ({ name, size, active, tailwind, className, ...props }: BtnProps) => import("react/jsx-runtime").JSX.Element;
export declare const BorderBtn: ({ name, size, active, tailwind, className, ...props }: BtnProps) => import("react/jsx-runtime").JSX.Element;
export declare const TabBtn: ({ name, size, active, tailwind, className, ...props }: BtnProps) => import("react/jsx-runtime").JSX.Element;
export declare const TextBtn: ({ name, size, active, tailwind, className, ...props }: BtnProps) => import("react/jsx-runtime").JSX.Element;
export declare const BtnWrapper: ({ type, name, alt, dataActive, disabled, taskRunning, children, tailwind, className, ...props }: BtnProps) => import("react/jsx-runtime").JSX.Element;
export declare const Card: ({ name, tailwind, className, children, ...props }: CardProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardHeader: ({ name, tailwind, className, children, ...props }: CardHeaderProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardIcon: ({ name, type, icon, tailwind, className, ...props }: CardIconProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardImg: ({ name, alt, tailwind, className, children, ...props }: CardImgProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardBody: ({ name, tailwind, className, children, ...props }: CardBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardPretitle: ({ name, tailwind, className, children, ...props }: CardPretitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardTitle: ({ name, size, tailwind, className, children, ...props }: CardTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardSubtitle: ({ name, tailwind, className, children, ...props }: CardSubtitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardText: ({ name, tailwind, className, children, ...props }: CardTextProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardFooter: ({ name, tailwind, className, children, ...props }: CardFooterProps) => import("react/jsx-runtime").JSX.Element;
export declare const CardActions: ({ name, tailwind, className, children, ...props }: CardActionsProps) => import("react/jsx-runtime").JSX.Element;
export declare const Checkbox: ({ id, name, title, text, checked, onChange, tailwind, className, children, ...props }: CheckboxProps) => import("react/jsx-runtime").JSX.Element;
export declare const CheckboxInput: ({ id, name, checked, onChange, tailwind, className, children, ...props }: CheckboxInputProps) => import("react/jsx-runtime").JSX.Element;
export declare const CheckboxTitle: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element;
export declare const CheckboxText: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element;
export declare const Command: ({ name, keys, tailwind, className, children, ...props }: CommandProps) => import("react/jsx-runtime").JSX.Element;
export type UIProviderProps = {
components: any;
contexts?: any;
fonts?: any[];
seo?: any;
theme?: any;
children?: any;
};
export declare const UIContext: React$1.Context<any>;
export declare const UIProvider: ({ components, contexts, fonts, seo, theme, children }: UIProviderProps) => import("react/jsx-runtime").JSX.Element;
export declare const useUI: () => any;
export declare const Drop: ({ ref, name, open, onClose, tailwind, className, children, ...props }: DropProps) => import("react/jsx-runtime").JSX.Element;
export declare const DropToggle: ({ name, alt, variant, nextIcon, onClick, tailwind, className, children, ...props }: DropToggleProps) => import("react/jsx-runtime").JSX.Element;
export declare const DropMenu: ({ ref, name, open, placement, tailwind, className, children, ...props }: DropMenuProps) => import("react/jsx-runtime").JSX.Element;
export declare const DropHeader: ({ name, tailwind, className, children, ...props }: DropHeaderProps) => import("react/jsx-runtime").JSX.Element;
export declare const DropTitle: ({ name, tailwind, className, children, ...props }: DropTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const DropSubtitle: ({ name, tailwind, className, children, ...props }: DropSubtitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const DropList: ({ name, tailwind, className, children, ...props }: DropListProps) => import("react/jsx-runtime").JSX.Element;
export declare const DropItem: ({ name, tailwind, className, children, ...props }: DropItemProps) => import("react/jsx-runtime").JSX.Element;
export declare const DropBtn: ({ name, tailwind, className, children, ...props }: DropBtnProps) => import("react/jsx-runtime").JSX.Element;
export declare const DropLink: ({ name, tailwind, className, children, ...props }: DropLinkProps) => import("react/jsx-runtime").JSX.Element;
export declare const Feedback: ({ name, tailwind, className, children, ...props }: FeedbackProps) => import("react/jsx-runtime").JSX.Element;
export declare const FeedbackHeader: ({ name, tailwind, className, children, ...props }: FeedbackHeaderProps) => import("react/jsx-runtime").JSX.Element;
export declare const FeedbackIcon: ({ name, type, icon, tailwind, className, ...props }: FeedbackIconProps) => import("react/jsx-runtime").JSX.Element;
export declare const FeedbackBody: ({ name, tailwind, className, children, ...props }: FeedbackBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const FeedbackPretitle: ({ name, tailwind, className, children, ...props }: FeedbackTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const FeedbackTitle: ({ name, size, tailwind, className, children, ...props }: FeedbackTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const FeedbackText: ({ name, tailwind, className, children, ...props }: FeedbackTextProps) => import("react/jsx-runtime").JSX.Element;
export declare const FeedbackActions: ({ name, tailwind, className, children, ...props }: FeedbackActionsProps) => import("react/jsx-runtime").JSX.Element;
export declare const Font: (props: any) => import("react/jsx-runtime").JSX.Element;
export declare const H1: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element;
export declare const H2: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element;
export declare const H3: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element;
export declare const H4: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element;
export declare const H5: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element;
export declare const H6: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element;
export declare const P: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element;
export declare const Small: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element;
export declare const Footer: ({ name, tailwind, className, children, ...props }: FooterProps) => import("react/jsx-runtime").JSX.Element;
export declare const FooterHeader: ({ name, tailwind, className, children, ...props }: FooterHeaderProps) => import("react/jsx-runtime").JSX.Element;
export declare const FooterBody: ({ name, tailwind, className, children, ...props }: FooterBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const FooterTitle: ({ name, size, tailwind, className, children, ...props }: FooterTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const FooterText: ({ name, tailwind, className, children, ...props }: FooterTextProps) => import("react/jsx-runtime").JSX.Element;
export declare const FooterList: ({ name, tailwind, className, children, ...props }: FooterListProps) => import("react/jsx-runtime").JSX.Element;
export declare const FooterItem: ({ name, tailwind, className, children, ...props }: FooterItemProps) => import("react/jsx-runtime").JSX.Element;
export declare const FooterBtn: ({ name, tailwind, className, children, ...props }: FooterBtnProps) => import("react/jsx-runtime").JSX.Element;
export declare const FooterLink: ({ name, tailwind, className, children, ...props }: FooterLinkProps) => import("react/jsx-runtime").JSX.Element;
export declare const FooterFooter: ({ name, tailwind, className, children, ...props }: FooterBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const Form: ({ id, name, onSubmit, tailwind, className, children, ...props }: FormProps) => import("react/jsx-runtime").JSX.Element;
export declare const FormGroup: ({ name, tailwind, className, children, ...props }: FormGroupProps) => import("react/jsx-runtime").JSX.Element;
export declare const FormLabel: ({ id, name, htmlFor, onClick, tailwind, className, children, ...props }: FormLabelProps) => import("react/jsx-runtime").JSX.Element;
export declare const FormCheckbox: ({ id, name, checked, onChange, readOnly, tailwind, className, ...props }: FormCheckboxProps) => import("react/jsx-runtime").JSX.Element;
export declare const FormInput: ({ id, ref, name, type, size, value, variant, placeholder, onChange, onFocus, onBlur, onClick, readOnly, tailwind, className, ...props }: FormInputProps) => import("react/jsx-runtime").JSX.Element;
export declare const FormCurrencyInput: ({ id, name, size, value, variant, prefix, placeholder, onChange, onBlur, readOnly, tailwind, className, ...props }: FormInputCurrencyProps) => import("react/jsx-runtime").JSX.Element;
export declare const FormDivInput: ({ id, name, size, value, variant, placeholder, onClick, tailwind, className, children, ...props }: FormInputProps) => import("react/jsx-runtime").JSX.Element;
export declare const FormFileInput: ({ id, name, value, placeholder, onChange, tailwind, className, ...props }: FormFileProps) => import("react/jsx-runtime").JSX.Element;
export declare const FormLocationInput: ({ id, name, size, value, variant, options, placeholder, googleMapsApiKey, onChange, onSelect, onBlur, readOnly, tailwind, className, ...props }: FormInputLocationProps) => import("react/jsx-runtime").JSX.Element;
export declare const FormMaskInput: ({ id, name, size, mask, value, variant, placeholder, onChange, onBlur, readOnly, tailwind, className, ...props }: FormInputMaskProps) => import("react/jsx-runtime").JSX.Element;
export declare const FormPhoneInput: ({ id, name, size, value, variant, placeholder, onChange, onBlur, readOnly, tailwind, className, ...props }: FormInputPhoneProps) => import("react/jsx-runtime").JSX.Element;
export declare const FormSelect: ({ id, name, size, value, variant, options, placeholder, disabled, onChange, tailwind, className, ...props }: FormSelectProps) => import("react/jsx-runtime").JSX.Element;
export declare const FormText: ({ name, tailwind, className, children, ...props }: FormTextProps) => import("react/jsx-runtime").JSX.Element;
export declare const FormTextArea: ({ id, name, size, value, variant, rows, placeholder, onChange, readOnly, tailwind, className, ...props }: FormTextAreaProps) => import("react/jsx-runtime").JSX.Element;
export declare const Container: ({ name, size, tailwind, className, children, ...props }: ContainerProps) => import("react/jsx-runtime").JSX.Element;
export declare const Grid: ({ name, cols, tailwind, className, children, ...props }: GridProps) => import("react/jsx-runtime").JSX.Element;
export declare const Col: ({ name, span, sm, md, lg, xl, xxl, tailwind, className, children, ...props }: ColProps) => import("react/jsx-runtime").JSX.Element;
export declare const Head: (props: HeadProps) => import("react/jsx-runtime").JSX.Element;
export declare const Header: ({ name, tailwind, className, children, ...props }: HeaderProps) => import("react/jsx-runtime").JSX.Element;
export declare const HeaderTitle: ({ name, size, tailwind, className, children, ...props }: HeaderTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const HeaderSubtitle: ({ name, size, tailwind, className, children, ...props }: HeaderSubtitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const HeaderText: ({ name, tailwind, className, children, ...props }: HeaderTextProps) => import("react/jsx-runtime").JSX.Element;
export declare const HeaderActions: ({ name, tailwind, className, children, ...props }: HeaderActionsProps) => import("react/jsx-runtime").JSX.Element;
export declare const Hero: ({ name, size, tailwind, className, children, ...props }: HeroProps) => import("react/jsx-runtime").JSX.Element;
export declare const HeroBg: ({ name, ref, tailwind, className, children, ...props }: HeroBgProps) => import("react/jsx-runtime").JSX.Element;
export declare const HeroImg: ({ name, alt, size, src, tailwind, className, ...props }: HeroImgProps) => import("react/jsx-runtime").JSX.Element;
export declare const HeroIcon: ({ name, size, icon, tailwind, className, ...props }: HeroIconProps) => import("react/jsx-runtime").JSX.Element;
export declare const HeroBody: ({ name, tailwind, className, children, ...props }: HeroBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const HeroPretitle: ({ name, tailwind, className, children, ...props }: HeroPretitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const HeroTitle: ({ name, size, tailwind, className, children, ...props }: HeroTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const HeroSubtitle: ({ name, size, tailwind, className, children, ...props }: HeroSubtitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const HeroText: ({ name, tailwind, className, children, ...props }: HeroTextProps) => import("react/jsx-runtime").JSX.Element;
export declare const HeroActions: ({ name, tailwind, className, children, ...props }: HeroActionsProps) => import("react/jsx-runtime").JSX.Element;
export declare const Article: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Aside: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Blockquote: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
declare const Body$1: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Caption: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Code: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Div: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Figure: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Hr: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Html: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const IFrame: ({ name, tailwind, className, ...props }: IFrameProps) => import("react/jsx-runtime").JSX.Element;
export declare const Img: ({ name, src, alt, tailwind, className, ...props }: ImgProps) => import("react/jsx-runtime").JSX.Element;
export declare const Li: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Main: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Pre: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Span: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Ul: ({ name, tailwind, className, children, ...props }: HtmlProps) => import("react/jsx-runtime").JSX.Element;
export declare const Icon: (props: any) => import("react/jsx-runtime").JSX.Element;
export declare const FabIcon: ({ name, icon, tailwind, className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
export declare const FadIcon: ({ name, icon, tailwind, className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
export declare const FalIcon: ({ name, icon, tailwind, className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
export declare const FarIcon: ({ name, icon, tailwind, className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
export declare const FasIcon: ({ name, icon, tailwind, className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
export declare const WrappedFabIcon: ({ name, icon, tailwind, className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
export declare const WrappedFadIcon: ({ name, icon, tailwind, className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
export declare const WrappedFalIcon: ({ name, icon, tailwind, className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
export declare const WrappedFarIcon: ({ name, icon, tailwind, className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
export declare const WrappedFasIcon: ({ name, icon, tailwind, className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
export declare const InputGroup: ({ name, active, tailwind, className, children, ...props }: InputGroupProps) => import("react/jsx-runtime").JSX.Element;
export declare const InputAppend: ({ name, icon, taskRunning, tailwind, className, children, ...props }: InputAddonProps) => import("react/jsx-runtime").JSX.Element;
export declare const InputPrepend: ({ name, icon, taskRunning, onClick, tailwind, className, children, ...props }: InputAddonProps) => import("react/jsx-runtime").JSX.Element;
export declare const Link: (props: any) => import("react/jsx-runtime").JSX.Element;
export declare const PrimaryLink: ({ name, size, alt, active, className, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element;
export declare const AccentLink: ({ name, size, active, className, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element;
export declare const BorderLink: ({ name, size, active, className, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element;
export declare const TabLink: ({ name, size, active, className, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element;
export declare const TextLink: ({ name, size, active, className, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element;
export declare const LinkShared: ({ alt, prevIcon, prevImg, icon, img, nextIcon, nextImg, taskRunning, tailwind, children, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element;
export declare const LinkWrapper: ({ name, alt, dataActive, href, target, disabled, tailwind, className, children, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element;
export declare const ListGroup: ({ name, tailwind, className, children, ...props }: LiPropsstGroup) => import("react/jsx-runtime").JSX.Element;
export declare const ListItem: ({ name, tailwind, className, children, ...props }: LiPropsstItem) => import("react/jsx-runtime").JSX.Element;
export declare const ModalLoader: ({ name, title, message, tailwind, className, children, ...props }: PageLoaderProps) => import("react/jsx-runtime").JSX.Element;
export declare const PageLoader: ({ name, title, message, tailwind, className, children, ...props }: PageLoaderProps) => import("react/jsx-runtime").JSX.Element;
export declare const SectionLoader: ({ name, title, message, tailwind, className, children, ...props }: SectionLoaderProps) => import("react/jsx-runtime").JSX.Element;
export declare const Menu: ({ ref, 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: ({ ref, name, open, onClose, tailwind, className, children, ...props }: MenuMenuProps) => import("react").ReactPortal;
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 declare const ModalWrapper: ({ name, open, onClose, tailwind, className, children, ...props }: ModalWrapperProps) => import("react/jsx-runtime").JSX.Element;
export declare const ModalBackdrop: ({ name, open, onClose, tailwind, ...props }: ModalBackdropProps) => import("react/jsx-runtime").JSX.Element;
export declare const Modal: ({ name, open, onClose, tailwind, className, children, ...props }: ModalProps) => import("react").ReactPortal;
export declare const ModalHeader: ({ name, onClose, tailwind, className, children, ...props }: ModalHeaderProps) => import("react/jsx-runtime").JSX.Element;
export declare const ModalTitle: ({ name, size, tailwind, className, children, ...props }: ModalTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const ModalSubtitle: ({ name, size, tailwind, className, children, ...props }: ModalSubtitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const ModalBody: ({ name, size, tailwind, className, children, ...props }: ModalBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const ModalFooter: ({ name, tailwind, className, children, ...props }: ModalFooterProps) => import("react/jsx-runtime").JSX.Element;
export declare const Navbar: ({ name, tailwind, className, children, ...props }: NavPropsbar) => import("react/jsx-runtime").JSX.Element;
export declare const NavbarBrand: ({ name, href, src, alt, tailwind, className, children, ...props }: NavPropsbarBrand) => import("react/jsx-runtime").JSX.Element;
export declare const NavbarList: ({ name, tailwind, className, children, ...props }: NavPropsbarList) => import("react/jsx-runtime").JSX.Element;
export declare const Nav: ({ name, tailwind, className, children, ...props }: NavProps) => import("react/jsx-runtime").JSX.Element;
export declare const NavHeader: ({ name, tailwind, className, children, ...props }: NavHeaderProps) => import("react/jsx-runtime").JSX.Element;
export declare const NavTitle: ({ name, size, tailwind, className, children, ...props }: NavTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const NavBody: ({ name, size, tailwind, className, children, ...props }: NavBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const NavList: ({ tailwind, children, ...props }: NavListProps) => import("react/jsx-runtime").JSX.Element;
export declare const NavItem: ({ tailwind, children, ...props }: NavItemProps) => import("react/jsx-runtime").JSX.Element;
export declare const NavBtn: ({ name, tailwind, className, children, ...props }: NavBtnProps) => import("react/jsx-runtime").JSX.Element;
export declare const NavLink: ({ name, tailwind, className, children, ...props }: NavLinkProps) => import("react/jsx-runtime").JSX.Element;
export declare const OtpInput: ({ id, name, size, value, placeholder, onChange, length, variant, tailwind, className, ...props }: OtpProps) => import("react/jsx-runtime").JSX.Element;
export declare const Pagination: ({ name, tailwind, className, children, ...props }: PaginationProps) => import("react/jsx-runtime").JSX.Element;
export declare const PaginationFirst: ({ name, alt, disabled, tailwind, className, onClick, ...props }: PaginationBtnProps) => import("react/jsx-runtime").JSX.Element;
export declare const PaginationPrev: ({ name, alt, disabled, tailwind, className, onClick, ...props }: PaginationBtnProps) => import("react/jsx-runtime").JSX.Element;
export declare const PaginationBtn: ({ name, alt, active, tailwind, className, onClick, children, ...props }: PaginationBtnProps) => import("react/jsx-runtime").JSX.Element;
export declare const PaginationNext: ({ name, alt, disabled, tailwind, className, onClick, ...props }: PaginationBtnProps) => import("react/jsx-runtime").JSX.Element;
export declare const PaginationLast: ({ name, alt, disabled, tailwind, className, onClick, ...props }: PaginationBtnProps) => import("react/jsx-runtime").JSX.Element;
export declare const Prefooter: ({ name, tailwind, className, children, ...props }: PrefooterProps) => import("react/jsx-runtime").JSX.Element;
export declare const PrefooterBody: ({ name, tailwind, className, children, ...props }: PrefooterBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const PrefooterPretitle: ({ name, tailwind, className, children, ...props }: PrefooterPretitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const PrefooterTitle: ({ name, size, tailwind, className, children, ...props }: PrefooterTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const PrefooterSubtitle: ({ name, size, tailwind, className, children, ...props }: PrefooterSubtitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const PrefooterText: ({ name, tailwind, className, children, ...props }: PrefooterTextProps) => import("react/jsx-runtime").JSX.Element;
export declare const PrefooterActions: ({ name, tailwind, className, children, ...props }: PrefooterActionsProps) => import("react/jsx-runtime").JSX.Element;
export declare const ProgressBar: ({ name, tailwind, className, children, ...props }: ProgressBarProps) => import("react/jsx-runtime").JSX.Element;
export declare const Progress: ({ name, value, tailwind, className, ...props }: ProgressProps) => import("react/jsx-runtime").JSX.Element;
declare const RadialProgressBar$1: ({ name, tailwind, className, children, ...props }: RadialProgressBar) => import("react/jsx-runtime").JSX.Element;
export declare const Radio: ({ id, name, title, text, value, onClick, tailwind, className, children, ...props }: RadioProps) => import("react/jsx-runtime").JSX.Element;
export declare const RadioInput: ({ id, name, value, tailwind, className, children, ...props }: RadioInputProps) => import("react/jsx-runtime").JSX.Element;
export declare const RadioTitle: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element;
export declare const RadioText: ({ name, tailwind, className, children, ...props }: FontProps) => import("react/jsx-runtime").JSX.Element;
export declare const Route: ({ name, seo, tailwind, className, children, ...props }: RouteProps) => import("react/jsx-runtime").JSX.Element;
export declare const Section: ({ name, tailwind, className, children, ...props }: SectionProps) => import("react/jsx-runtime").JSX.Element;
export declare const SectionHeader: ({ name, tailwind, className, children, ...props }: SectionHeaderProps) => import("react/jsx-runtime").JSX.Element;
export declare const SectionPretitle: ({ name, tailwind, className, children, ...props }: SectionPretitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const SectionTitle: ({ name, size, tailwind, className, children, ...props }: SectionTitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const SectionSubtitle: ({ name, size, tailwind, className, children, ...props }: SectionSubtitleProps) => import("react/jsx-runtime").JSX.Element;
export declare const SectionText: ({ name, tailwind, className, children, ...props }: SectionTextProps) => import("react/jsx-runtime").JSX.Element;
export declare const SectionActions: ({ name, tailwind, className, children, ...props }: SectionActionsProps) => import("react/jsx-runtime").JSX.Element;
export declare const SectionBody: ({ name, size, tailwind, className, children, ...props }: SectionBodyProps) => import("react/jsx-runtime").JSX.Element;
export declare const SectionHr: ({ name, tailwind, className, ...props }: SectionHrProps) => import("react/jsx-runtime").JSX.Element;
export declare const SectionFooter: ({ name, tailwind, className, children, ...props }: SectionFooterProps) => import("react/jsx-runtime").JSX.Element;
export declare const SlideWrapper: ({ name, open, onClose, tailwind, className, child