import { ComputedRef, Ref } from 'vue';
interface ProvideSearchBar {
    gridProps: ComputedRef<Record<string, any>>;
    model: Ref<Record<string, any>>;
    autoUpdate: Ref<boolean>;
}
export declare const provideSearchBar: ({ gridProps, model, autoUpdate }: ProvideSearchBar) => void;
export declare const injectSearchBar: () => ProvideSearchBar;
export {};
