export type MarkedPathValue = string; export type MarkedCallback = { /** * URL or bundle identifier to open after Marked performs the command. */ 'x-success'?: string; }; export type MarkedRaise = { /** * Raise affected window(s) above other applications after the command runs. */ raise?: true | 'true'; }; export declare function markedUrl(command: string, params?: Record, payload?: MarkedCallback & Partial): string; export declare function markedPathUrl(command: string, path: MarkedPathValue, params?: Record, payload?: MarkedCallback & Partial): string; export declare function fileParam(value: string | undefined): string | undefined;