import type { AccordionContentDef, AccordionDef, AccordionItemDef, AccordionTriggerDef } from './components/Accordion'; import type { AlertActionsDef, AlertButtonDef, AlertDef, AlertDescriptionDef, AlertTitleDef } from './components/Alert'; import type { AlertDialogActionDef, AlertDialogCancelDef, AlertDialogContentDef, AlertDialogDef, AlertDialogDescriptionDef, AlertDialogFooterDef, AlertDialogHeadingDef, AlertDialogTriggerDef } from './components/AlertDialog'; import type { AspectRatioDef } from './components/AspectRatio'; import type { AssetAmountDef, AssetDef, AssetIconDef, AssetNameDef, AssetSymbolDef } from './components/Asset'; import type { AvatarDef, AvatarGeneratedDef } from './components/Avatar'; import type { BadgeDef } from './components/Badge'; import type { BoxCenteredDef, BoxDef, ContainerDef, FlexDef, HStackDef, StackDef, VStackDef } from './components/Box'; import type { BreadcrumbDef, BreadcrumbItemDef, BreadcrumbLinkDef } from './components/Breadcrumb'; import type { ButtonDef } from './components/Button'; import type { ButtonGroupDef } from './components/ButtonGroup'; import type { ButtonLinkDef } from './components/ButtonLink'; import type { CardBodyDef, CardDef, CardFooterDef, CardHeaderDef } from './components/Card'; import type { CardListDef, CardListItemDef } from './components/CardList'; import type { CheckboxDef } from './components/Checkbox'; import type { ContentLoaderDef } from './components/ContentLoader'; import type { CopyableDef } from './components/Copyable'; import type { DialogCloseDef, DialogContentDef, DialogDef, DialogDescriptionDef, DialogFooterDef, DialogHeadingDef, DialogTriggerDef } from './components/Dialog'; import type { DrawerBodyDef, DrawerCloseDef, DrawerContentDef, DrawerDef, DrawerTriggerDef } from './components/Drawer'; import type { DropdownDef, DropdownMenuDef, DropdownMenuItemDef, DropdownTriggerDef } from './components/Dropdown'; import type { HeadingDef } from './components/Heading'; import type { HelperIconDef } from './components/HelperIcon'; import type { IconDef } from './components/Icon'; import type { ImageDef } from './components/Image'; import type { LinkDef } from './components/Link'; import type { NavConnectionDef, NavDef, NavDesktopDef, NavLogoDef, NavMenuDef, NavMenuItemDef, NavMobileContentDef, NavMobileDef, NavSpacerDef, NavThemeToggleDef } from './components/Nav'; import type { SpinnerDef } from './components/Spinner'; import type { TextDef } from './components/Text'; export type StoreDefs = { AccordionContent: AccordionContentDef; Accordion: AccordionDef; AccordionItem: AccordionItemDef; AccordionTrigger: AccordionTriggerDef; AlertActions: AlertActionsDef; AlertButton: AlertButtonDef; Alert: AlertDef; AlertDescription: AlertDescriptionDef; AlertTitle: AlertTitleDef; AlertDialogAction: AlertDialogActionDef; AlertDialogCancel: AlertDialogCancelDef; AlertDialogContent: AlertDialogContentDef; AlertDialog: AlertDialogDef; AlertDialogDescription: AlertDialogDescriptionDef; AlertDialogFooter: AlertDialogFooterDef; AlertDialogHeading: AlertDialogHeadingDef; AlertDialogTrigger: AlertDialogTriggerDef; Avatar: AvatarDef; AvatarGenerated: AvatarGeneratedDef; AspectRatio: AspectRatioDef; AssetAmount: AssetAmountDef; Asset: AssetDef; AssetIcon: AssetIconDef; AssetName: AssetNameDef; AssetSymbol: AssetSymbolDef; Badge: BadgeDef; BoxCentered: BoxCenteredDef; Box: BoxDef; Container: ContainerDef; Flex: FlexDef; HStack: HStackDef; Stack: StackDef; VStack: VStackDef; Breadcrumb: BreadcrumbDef; BreadcrumbItem: BreadcrumbItemDef; BreadcrumbLink: BreadcrumbLinkDef; Button: ButtonDef; ButtonGroup: ButtonGroupDef; ButtonLink: ButtonLinkDef; CardBody: CardBodyDef; Card: CardDef; CardFooter: CardFooterDef; CardHeader: CardHeaderDef; CardList: CardListDef; CardListItem: CardListItemDef; Checkbox: CheckboxDef; ContentLoader: ContentLoaderDef; Copyable: CopyableDef; DialogClose: DialogCloseDef; DialogContent: DialogContentDef; Dialog: DialogDef; DialogDescription: DialogDescriptionDef; DialogFooter: DialogFooterDef; DialogHeading: DialogHeadingDef; DialogTrigger: DialogTriggerDef; DrawerBody: DrawerBodyDef; DrawerClose: DrawerCloseDef; DrawerContent: DrawerContentDef; Drawer: DrawerDef; DrawerTrigger: DrawerTriggerDef; Dropdown: DropdownDef; DropdownMenu: DropdownMenuDef; DropdownMenuItem: DropdownMenuItemDef; DropdownTrigger: DropdownTriggerDef; Heading: HeadingDef; HelperIcon: HelperIconDef; Icon: IconDef; Image: ImageDef; Link: LinkDef; NavConnection: NavConnectionDef; Nav: NavDef; NavDesktop: NavDesktopDef; NavLogo: NavLogoDef; NavMenu: NavMenuDef; NavMenuItem: NavMenuItemDef; NavMobileContent: NavMobileContentDef; NavMobile: NavMobileDef; NavSpacer: NavSpacerDef; NavThemeToggle: NavThemeToggleDef; Spinner: SpinnerDef; Text: TextDef; };