import * as solid_js from 'solid-js'; import { ValidComponent } from 'solid-js'; import { PolymorphicProps } from '../polymorphic/index.js'; import '@kobalte/utils'; interface BadgeRootOptions { /** * Accessible text description of the badge if child is not text. */ textValue?: string; } interface BadgeRootCommonProps { "aria-label"?: string; } interface BadgeRootRenderProps extends BadgeRootCommonProps { } type BadgeRootProps = BadgeRootOptions & Partial; declare function BadgeRoot(props: PolymorphicProps>): solid_js.JSX.Element; declare const Badge: typeof BadgeRoot; export { Badge, BadgeRootCommonProps, BadgeRootOptions, BadgeRootProps, BadgeRootRenderProps, BadgeRoot as Root };