export type FetchResult = {
    success: boolean;
    error?: string;
};
/**
 * Fetch latest changes from origin
 * @param branch - Optional specific branch to fetch (if not provided, fetches all branches)
 * @param cwd - Optional working directory
 * @returns FetchResult indicating success or failure
 */
export declare function fetchOrigin(branch?: string, cwd?: string): Promise<FetchResult>;
//# sourceMappingURL=fetchOrigin.d.ts.map