import type { SpacingProps } from '../../shared/types';
export type FilterResultCountProps = {
    connectedTo?: string;
    resultCount?: number;
    alwaysVisible?: boolean;
    children?: string;
    className?: string;
} & SpacingProps;
declare function FilterResultCount({ connectedTo, resultCount: resultCountProp, alwaysVisible, children, className, ...spacingRest }: FilterResultCountProps): import("react/jsx-runtime").JSX.Element;
export default FilterResultCount;
