import { type ReactNode } from 'react'; import { View, type ViewProps } from 'react-native'; import type { ForgeIcon } from '@cdx-ui/icons'; import { type BadgeVariantProps } from './styles'; export interface BadgeProps extends ViewProps, BadgeVariantProps { children?: ReactNode; label?: ReactNode; icon?: ForgeIcon; className?: string; } declare const Badge: import("react").ForwardRefExoticComponent>; export { Badge }; export type { BadgeVariantProps } from './styles'; //# sourceMappingURL=index.d.ts.map