import { default as React } from 'react'; import { TooltipProps } from '../Tooltip/Tooltip'; type LabelProps = { labelName: string; placeholder?: string; useTrimForLabel?: boolean; }; type TagProps = { tags: string[]; useTrimForTags?: boolean; truncateTagIndex?: number; truncatedTagWidth?: number; withMaxWidthOptionContainer?: boolean; hasMore?: boolean; totalCount?: number; }; type ExposedFilterShellProps = { label: LabelProps; disabled?: boolean; disabledTooltip?: Omit; isActive: boolean; tagView: TagProps; onMainClick: () => void; onClear?: () => void; }; declare const ExposedFilterShell: React.ForwardRefExoticComponent>; export default ExposedFilterShell;