import { Component, HTMLAttributes, ReactNode } from 'react'; import { CommonProps } from '../common'; export declare type SoftFilterGroupProps = HTMLAttributes & CommonProps & { children?: ReactNode; /** * Expand the whole bar to fill its parent's width */ fullWidth?: boolean; }; export declare class FilterGroup extends Component<{ children?: any; className?: any; fullWidth?: boolean; }> { static defaultProps: { fullWidth: boolean; }; render(): JSX.Element; }