import { type ComponentPropsWithoutRef, type ReactNode } from 'react'; export type FoundingDateBadgeProps = Omit, 'children'> & { accentColor?: string; active?: boolean; backgroundColor?: string; borderColor?: string; children?: ReactNode; color?: string; }; export declare const FoundingDateBadge: ({ accentColor, active, backgroundColor, borderColor, children, className, color, style, ...props }: FoundingDateBadgeProps) => import("react/jsx-runtime").JSX.Element;