import type { PropsWithDefaults, WithAttributes, TestIdProp } from '../../types'; export type CountProps = WithAttributes<'span', TestIdProp & { /** Determines the color to render the Badge as. This color is derived from the Theme. * @default 'default' */ variant?: 'default' | 'urgent'; /** The count to be displayed within the Badge. */ children: number | null; /** Indicates whether there are more items than the count being displayed. If true, a "+" is appended to the count. */ hasMore?: boolean; }>; type CountPropsWithDefaults = PropsWithDefaults; export declare const StyledCount: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLSpanElement>, Pick & { children: string; }>> & string; declare const _default: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & { getTestIds: (testIdProp?: TestIdProp["testId"]) => import("../../types").TestIdsRecord; }; export default _default; //# sourceMappingURL=Count.d.ts.map