import { type ComponentProps } from 'react'; type BaseBadgeProps = ComponentProps; declare const BaseBadge: import("styled-system/jsx").StyledComponent & import("react").HTMLAttributes & import("@ark-ui/react").PolymorphicProps>, import("styled-system/recipes").BadgeVariantProps>; export interface BadgeProps extends Omit { /** * The color palette to use for the badge. * @default "primary" */ colorPalette?: 'primary' | 'secondary' | 'tertiary' | 'neutral' | 'error' | 'gray' | 'red' | undefined; } export declare const Badge: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export {}; //# sourceMappingURL=Badge.d.ts.map