import * as React from 'react'; export interface QuickFilterState { value: string; expanded: boolean; } export interface QuickFilterContextValue { state: QuickFilterState; controlId: string | undefined; controlRef: React.RefObject; triggerRef: React.RefObject; clearValue: () => void; onValueChange: (event: React.ChangeEvent) => void; onExpandedChange: (expanded: boolean) => void; } export declare const QuickFilterContext: React.Context; export declare function useQuickFilterContext(): QuickFilterContextValue;