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;
