UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

16 lines (15 loc) 586 B
import type { ReactNode } from 'react'; export type FilterToolbarProps = { className?: string; children?: ReactNode; }; declare function FilterToolbar({ className, children }: FilterToolbarProps): import("react/jsx-runtime").JSX.Element; declare namespace FilterToolbar { var Actions: typeof FilterToolbarActions; } export type FilterToolbarActionsProps = { className?: string; children?: ReactNode; }; declare function FilterToolbarActions({ className, children, }: FilterToolbarActionsProps): import("react/jsx-runtime").JSX.Element; export default FilterToolbar;