import { Node, Path } from "slate";
/**
 * SearchedProperties hold result from `search by path`
 */
declare type SearchedProperties = {
    node: Node;
    path: Path;
};
export declare const useSearchedProperties: () => [SearchedProperties, (update: import("jotai/core/types").SetStateAction<SearchedProperties>) => void | Promise<void>];
export declare const useSearchedPropertiesSet: () => [null, (update: SearchedProperties) => void | Promise<void>];
export {};
//# sourceMappingURL=searchedPath.d.ts.map