import { type FindInPageViewOptions } from "@todesktop/client-util"; import { type Ref } from "./invoke.js"; /** * Creates a new FindInPageView * * @param ref - ref: Reference for the FindInPageView * @param opriona - options: Options for * @public */ export declare function create(browserWindowRef: Ref, options: FindInPageViewOptions): Promise; /** * Opens the FindInPageView in the attached window. * * @param ref - ref: Reference for the FindInPageView * @public */ export declare function open(viewRef: Ref | null): Promise; /** * Closes the FindInPageView in the attached window. * * @param ref - ref: Reference for the FindInPageView * @public */ export declare function close(viewRef: Ref | null): Promise;