import { HTMLAttributes } from 'svelte/elements';
interface SearchLayerProps extends HTMLAttributes {
documentId: string;
pageIndex: number;
scale?: number;
highlightColor?: string;
activeHighlightColor?: string;
}
declare const SearchLayer: import('svelte', { with: { "resolution-mode": "import" } }).Component;
type SearchLayer = ReturnType;
export default SearchLayer;