/** * Locked command payload definition. */ type Locked = { /** * String to search. */ search?: string; /** * If no the call don't force the opening of bear main window (MacOS only). */ showWindow?: boolean; }; /** * Select the Locked sidebar item in Bear. * * @param payload Locked command payload. * @returns Bear locked URL. * @example * locked({ search: 'data' }) * // => 'bear://x-callback-url/locked?search=data' * @link https://bear.app/faq/x-callback-url-scheme-documentation/#locked */ export declare function locked(payload?: Locked): string; export {};