UNPKG

baseui

Version:

A React Component library implementing the Base design language

12 lines (11 loc) 328 B
import * as React from 'react'; export type ExcludeKind = 'value' | 'range'; type Props = { children: React.ReactNode; exclude: boolean; excludeKind?: ExcludeKind; onExcludeChange: () => void; onApply: () => void; }; declare function FilterShell(props: Props): React.JSX.Element; export default FilterShell;