import { default as React } from 'react'; export declare const VALID_KINDS: readonly ["info", "success", "warn", "error", "theme", "neutral"]; export interface CountProps { /** Value to display in Count */ value: number | string; /** Variant of Count */ kind?: (typeof VALID_KINDS)[number]; } /** * Used for display counts in navigation, tags, filters, and elsewhere. */ declare const Count: ({ value, kind }: CountProps) => React.JSX.Element; export default Count; //# sourceMappingURL=index.d.ts.map