/**
 * Reads and writes the global asset search term held in `?_q=`.
 *
 * Debouncing is the input component's job (see `AssetsSearchInput`) — this hook
 * is a thin URL accessor so every consumer reads the same source of truth.
 */
export declare const useAssetSearch: () => {
    searchQuery: string;
    isSearching: boolean;
    setSearchQuery: (value: string) => void;
    clearSearch: () => void;
};
