UNPKG

@vtex/admin-ui

Version:

> VTEX admin component library

10 lines (9 loc) 324 B
import type { ReactNode } from 'react'; import type { SystemComponentProps } from '../types'; export declare function FilterGroup(props: FilterGroupProps): JSX.Element; export interface FilterGroupProps extends SystemComponentProps<{}> { children?: ReactNode; state: { onClear: () => void; }; }