import * as react_jsx_runtime from 'react/jsx-runtime'; import { ReactNode } from 'react'; /** Apply to the hub content wrapper when showing results (list surface under composer). */ declare const DEDICATED_SEARCH_RESULTS_OUTER_CONTENT_CLASSNAME = "border-t border-border/40 bg-gradient-to-b from-muted/25 via-background to-background"; interface DedicatedSearchResultsHeaderChromeProps { children: ReactNode; className?: string; } /** * Muted strip wrapping page chrome + composer on the results branch (below site header). */ declare function DedicatedSearchResultsHeaderChrome({ children, className }: DedicatedSearchResultsHeaderChromeProps): react_jsx_runtime.JSX.Element; export { DEDICATED_SEARCH_RESULTS_OUTER_CONTENT_CLASSNAME, DedicatedSearchResultsHeaderChrome, type DedicatedSearchResultsHeaderChromeProps };