/** * Git clone definition. */ type CloneProject = { /** * Git repository URL. * * @example 'https://github.com/zhensherlock/protocol-launcher' */ repo: string; }; /** * Clone project in SourceTree. * * @returns SourceTree clone project URL. * @example * cloneProject({ * repo: 'https://github.com/zhensherlock/protocol-launcher', * }) * // => 'sourcetree://cloneRepo/https://github.com/zhensherlock/protocol-launcher' */ export declare function cloneProject(payload: CloneProject): string; export {};