UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

11 lines (10 loc) 475 B
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;