import { CompoundEntityRef } from '@backstage/catalog-model'; /** * Props for {@link TechDocsSearch} * * @public */ export type TechDocsSearchProps = { entityId: CompoundEntityRef; entityTitle?: string; debounceTime?: number; searchResultUrlMapper?: (url: string) => string; }; /** * Component used to render search bar on TechDocs page, scoped to * * @public */ export declare const TechDocsSearch: (props: TechDocsSearchProps) => import("react/jsx-runtime").JSX.Element;