import React from "react"; import type { PolymorphicComponentPropsWithRef } from "../../types"; import { type ButtonProps } from "../Button/Button"; export type CountButtonProps = { /** Count to show in tag. If null, tag does not show. */ count: number | null; } & Omit; type CountButtonComponent = (props: PolymorphicComponentPropsWithRef) => React.ReactNode | null; export declare const CountButton: CountButtonComponent; export {};